xref: /illumos-gate/usr/src/tools/smatch/src/validation/linear/missing-return0.c (revision f52943a93040563107b95bccb9db87d9971ef47d)
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