Files
clang-p2996/clang/test/CodeCompletion/enum-switch-case.cpp
Douglas Gregor ea9b03e6e2 Replace the -code-completion-dump option with
-code-completion-at=filename:line:column

which performs code completion at the specified location by truncating
the file at that position and enabling code completion. This approach
makes it possible to run multiple tests from a single test file, and
gives a more natural command-line interface.

llvm-svn: 82571
2009-09-22 21:11:38 +00:00

30 lines
587 B
C++

namespace N {
enum Color {
Red,
Orange,
Yellow,
Green,
Blue,
Indigo,
Violet
};
}
void test(enum N::Color color) {
switch (color) {
case N::Red:
break;
case N::Yellow:
break;
case
// RUN: clang-cc -fsyntax-only -code-completion-at=%s:21:8 %s -o - | FileCheck -check-prefix=CC1 %s &&
// CHECK-CC1: Blue : 0 : N::Blue
// CHECK-NEXT-CC1: Green : 0 : N::Green
// CHECK-NEXT-CC1: Indigo : 0 : N::Indigo
// CHECK-NEXT-CC1: Orange : 0 : N::Orange
// CHECK-NEXT-CC1: Violet : 0 : N::Violet
// RUN: true