1static 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
11sizeof-bool.c:3:16: warning: expression using sizeof _Bool
12 * check-error-end
13 */
14