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