Remove some false positives and enable the check.
[smatch.git] / validation / declaration-after-statement-c89.c
blob78632cd98536e97a6982604553aea2739237153d
1 static void func (int i)
3 i;
4 int j = i;
6 /*
7 * check-name: declaration after statement (C89)
8 * check-command: sparse -std=c89 $file
9 * check-error-start
10 declaration-after-statement-c89.c:4:2: warning: mixing declarations and code
11 * check-error-end