aboutsummaryrefslogtreecommitdiff
blob: 3b716feda6c355f1e9a0348b8d63bc0eaf799bff (plain)
1
2
3
4
5
6
7
8
struct foo {int x, y;};
static int a(void)
{
	return sizeof (struct foo){0,1}.y;
}
/*
 * check-name: Handling of sizeof compound-literal . member
 */