aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/validation/double-semicolon.c
blob: a1b8e6361cc71cba1ec58262d35638a2153be23b (plain)
1
2
3
4
5
6
7
8
9
extern void *memset (void *s, int c, int n);
static void test(void)
{
	struct { int foo;; } val;
	memset(&val, 0, sizeof(val));
}
/*
 * check-name: Double semicolon in struct
 */