forked from OSchip/llvm-project
53 lines
1.2 KiB
C
53 lines
1.2 KiB
C
// RUN: clang -fsyntax-only -verify %s
|
|
|
|
void f (int z) {
|
|
while (z) {
|
|
default: z--; // expected-error {{statement not in switch}}
|
|
}
|
|
}
|
|
|
|
void foo(int X) {
|
|
switch (X) {
|
|
case 42: ; // expected-error {{previous case value}}
|
|
case 5000000000LL: // expected-warning {{overflow}}
|
|
case 42: // expected-error {{duplicate case value}}
|
|
;
|
|
|
|
case 100 ... 99: ; // expected-warning {{empty case range}}
|
|
|
|
case 43: ; // expected-error {{previous case value}}
|
|
case 43 ... 45: ; // expected-error {{duplicate case value}}
|
|
|
|
case 100 ... 20000:; // expected-error {{previous case value}}
|
|
case 15000 ... 40000000:; // expected-error {{duplicate case value}}
|
|
}
|
|
}
|
|
|
|
void test3(void) {
|
|
// empty switch;
|
|
switch (0);
|
|
}
|
|
|
|
extern int g();
|
|
|
|
void test4()
|
|
{
|
|
switch (1) {
|
|
case 0 && g():
|
|
case 1 || g():
|
|
break;
|
|
}
|
|
|
|
switch(1) {
|
|
case g(): // expected-error {{case label does not reduce to an integer constant}}
|
|
case 0 ... g(): // expected-error {{case label does not reduce to an integer constant}}
|
|
break;
|
|
}
|
|
|
|
switch (1) {
|
|
case 0 && g() ... 1 || g():
|
|
break;
|
|
}
|
|
}
|
|
|