You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
364 B
26 lines
364 B
7 months ago
|
// RUN: %clang_cc1 -verify -Wno-covered-switch-default %s
|
||
|
// expected-no-diagnostics
|
||
|
|
||
|
enum E {
|
||
|
one,
|
||
|
two,
|
||
|
three,
|
||
|
four
|
||
|
};
|
||
|
|
||
|
|
||
|
int test(enum E e)
|
||
|
{
|
||
|
switch (e)
|
||
|
{
|
||
|
case one:
|
||
|
return 7;
|
||
|
case two ... two + 1:
|
||
|
return 42;
|
||
|
case four:
|
||
|
return 25;
|
||
|
default:
|
||
|
return 0;
|
||
|
}
|
||
|
}
|