xref: /illumos-gate/usr/src/tools/smatch/src/validation/sizeof-compound-postfix.c (revision 1da57d551424de5a9d469760be7c4b4d4f10a755)
1 struct foo {int x, y;};
2 static int a(void)
3 {
4 	return sizeof (struct foo){0,1}.y;
5 }
6 /*
7  * check-name: Handling of sizeof compound-literal . member
8  */
9