YouCompleteMe/cpp/llvm/tools/clang/test/SemaCXX/gnu-case-ranges.cpp
Strahinja Val Markovic 1f51a89d39 Adding more llvm/clang files
These were ignored by git accidentally. We want ALL OF THEM since they all came
in the llvm/clang source distribution.
2012-07-05 17:55:45 -07:00

25 lines
337 B
C++

// RUN: %clang_cc1 -verify -Wno-covered-switch-default %s
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;
}
}