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