1/* struct with only anonymous members */
2
3struct foo {
4	union {
5		long loo;
6		double doo;
7	};
8};
9
10int
11main(void) {
12
13	struct foo *f = 0;
14	printf("%p\n", &f[1]);
15	return 0;
16}
17