aboutsummaryrefslogtreecommitdiff
path: root/test/builtin-offsetof.c
blob: 1737d0e9b26b4234df4f1fefed93e0eab14f35bc (plain)
1
2
3
4
5
6
7
8
9
struct s {
	struct {
		union {
			float z;
			char *c;
		} b;
	} a[5];
};
int x = __builtin_offsetof(struct s, a[2].b.c);