blob: a1b8e6361cc71cba1ec58262d35638a2153be23b [file] [log] [blame]
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
*/