Newer
Older
ubixos / contrib / netbsd-tests / usr.bin / xlint / lint1 / d_c99_anon_union.c
@Charlie Root Charlie Root on 31 Dec 2017 173 bytes More Cleanup
/* struct with only anonymous members */

struct foo {
	union {
		long loo;
		double doo;
	};
};

int
main(void) {

	struct foo *f = 0;
	printf("%p\n", &f[1]);
	return 0;
}