1 extern void *memset (void *s, int c, int n);
test(void)2 static void test(void)
3 {
4 	struct { int foo;; } val;
5 	memset(&val, 0, sizeof(val));
6 }
7 /*
8  * check-name: Double semicolon in struct
9  */
10