blob: b22adb749576a952320b7d700ae4bb3ba31fb7a7 [file] [log] [blame]
Edward O'Callaghan12356b12009-10-17 19:32:54 +00001// RUN: clang-cc -fsyntax-only -verify %s
2
3void test() {
4 bool x = true;
5 switch (x) { // expected-warning {{bool}}
6 case 0:
7 break;
8 }
9
10 int n = 3;
11 switch (n && 1) { // expected-warning {{bool}}
12 case 1:
13 break;
14 }
15}