annotate gcc/testsuite/gcc.dg/pr51957-1.h @ 145:1830386684a0

gcc-9.2.0
author anatofuz
date Thu, 13 Feb 2020 11:34:05 +0900
parents 04ced10e8804
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
111
kono
parents:
diff changeset
1 union R { int c; union R *p; };
kono
parents:
diff changeset
2 extern union R *w[];
kono
parents:
diff changeset
3 typedef struct { int t; } T;
kono
parents:
diff changeset
4 typedef struct { void *u; } U;
kono
parents:
diff changeset
5 union R *fn1 (void);
kono
parents:
diff changeset
6 void fn2 (int, const char *, union R *);
kono
parents:
diff changeset
7 void fn3 (void);
kono
parents:
diff changeset
8 int fn4 (union R *);
kono
parents:
diff changeset
9 void foo (U *x);