repo.or.cz
/
gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fortran: Fix PR 47485.
[gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
torture
/
pr55355.C
blob
6d8f8b6be1ec2f83843fb408719095d5b90f469c
1
/* { dg-do compile } */
2
3
struct A
4
{
5
void funcA(void);
6
};
7
8
struct B {};
9
10
struct C
11
{
12
void funcC(void) { a_mp->funcA(); }
13
14
char buf_ma[268435456];
15
A *a_mp;
16
B b_m;
17
};
18
19
void
20
func(C *c_p)
21
{
22
c_p->funcC();
23
}