param_cleared: handle direct assignments
[smatch.git] / validation / double-semicolon.c
bloba1b8e6361cc71cba1ec58262d35638a2153be23b
1 extern void *memset (void *s, int c, int n);
2 static void test(void)
4 struct { int foo;; } val;
5 memset(&val, 0, sizeof(val));
7 /*
8 * check-name: Double semicolon in struct
9 */