xref: /minix3/external/bsd/llvm/dist/clang/test/Index/load-decls.c (revision f4a2713ac843a11c696ec80c0a5e3e5d80b4d338)
1*f4a2713aSLionel Sambuc enum Color {
2*f4a2713aSLionel Sambuc   Red,
3*f4a2713aSLionel Sambuc   Green,
4*f4a2713aSLionel Sambuc   Blue,
5*f4a2713aSLionel Sambuc 
6*f4a2713aSLionel Sambuc   Rouge = Red
7*f4a2713aSLionel Sambuc };
8*f4a2713aSLionel Sambuc 
9*f4a2713aSLionel Sambuc // RUN: c-index-test -test-load-source all %s | FileCheck %s
10*f4a2713aSLionel Sambuc // CHECK: load-decls.c:1:6: EnumDecl=Color:1:6 (Definition) Extent=[1:1 - 7:2]
11*f4a2713aSLionel Sambuc // CHECK: load-decls.c:2:3: EnumConstantDecl=Red:2:3 (Definition) Extent=[2:3 - 2:6]
12*f4a2713aSLionel Sambuc // CHECK: load-decls.c:3:3: EnumConstantDecl=Green:3:3 (Definition) Extent=[3:3 - 3:8]
13*f4a2713aSLionel Sambuc // CHECK: load-decls.c:4:3: EnumConstantDecl=Blue:4:3 (Definition) Extent=[4:3 - 4:7]
14*f4a2713aSLionel Sambuc // CHECK: load-decls.c:6:3: EnumConstantDecl=Rouge:6:3 (Definition) Extent=[6:3 - 6:14]
15*f4a2713aSLionel Sambuc // CHECK: load-decls.c:6:11: DeclRefExpr=Red:2:3 Extent=[6:11 - 6:14]
16