rosenberg_funcs: warn about information leaks to the network
[smatch.git] / validation / empty-assign.c
blobd1c3884f71e8a34bcf92e8fec82d610086b70d68
1 static int foo(int a)
3 a = ; // KO
4 return a;
7 /*
8 * check-name: empty-assign
10 * check-error-start
11 empty-assign.c:3:11: error: expression expected before ';'
12 * check-error-end