xref: /illumos-gate/usr/src/tools/smatch/src/validation/sizeof-bool.c (revision 856f710c9dc323b39da5935194d7928ffb99b67f)
1 static int a(void)
2 {
3 	return sizeof(_Bool);
4 }
5 /*
6  * check-name: sizeof(_Bool) is valid
7  * check-description: sizeof(_Bool) was rejected because _Bool is not an even
8  * number of bytes
9  * check-command: sparse -Wsizeof-bool $file
10  * check-error-start
11 sizeof-bool.c:3:16: warning: expression using sizeof bool
12  * check-error-end
13  */
14