xref: /illumos-gate/usr/src/tools/smatch/src/validation/member_of_typeof.c (revision f52943a93040563107b95bccb9db87d9971ef47d)
1 static struct foo {int x;} v;
2 static typeof(v) *p;
3 static void bar(void)
4 {
5 	p->x = 0;
6 }
7 /*
8  * check-name: Expansion of typeof when dealing with member of struct
9  * check-description: Used to expand SYM_TYPEOF too late
10  */
11