mirror of
https://github.com/Gericom/teak-llvm.git
synced 2025-06-27 23:38:59 -04:00

of file locations for anonymous tag types (e.g., "enum <anonymous at t.h:15:6>"), which can get rather long. llvm-svn: 100470
16 lines
320 B
C
16 lines
320 B
C
// Note: the run lines follow their respective tests, since line/column
|
|
// matter in this test.
|
|
|
|
enum {
|
|
Red = 17,
|
|
Green,
|
|
Blue
|
|
};
|
|
|
|
void f() {
|
|
|
|
}
|
|
|
|
// RUN: c-index-test -code-completion-at=%s:11:1 %s | FileCheck -check-prefix=CHECK-CC1 %s
|
|
// CHECK-CC1: EnumConstantDecl:{ResultType enum <anonymous>}{TypedText Red}
|