blob: 803c6a8905233e4933d3962b875c242fb04192e3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
/* Origin: PR c/410 from Jan Echternach
<jan.echternach@informatik.uni-rostock.de>,
adapted to a testcase by Joseph Myers <jsm28@cam.ac.uk>.
*/
extern void exit (int);
static void
foo (void)
{
struct {
long a;
char b[1];
} x = { 2, { 0 } };
}
int
main (void)
{
int tmp;
foo ();
tmp = 1;
exit (0);
}
|