xref: /illumos-gate/usr/src/tools/smatch/src/validation/linear/missing-return0.c (revision d0972c645cf979856ed66c1c6a1f082383c90b0c)
1 static int foo(int a)
2 {
3 	if (a)
4 		return 1;
5 }
6 
7 /*
8  * check-name: missing-return0
9  * check-command: sparse -vir -flinearize=last $file
10  */
11