xref: /minix3/external/bsd/llvm/dist/clang/test/CodeCompletion/stdin.c (revision f4a2713ac843a11c696ec80c0a5e3e5d80b4d338)
1*f4a2713aSLionel Sambuc enum X { x };
2*f4a2713aSLionel Sambuc enum Y { y };
3*f4a2713aSLionel Sambuc 
4*f4a2713aSLionel Sambuc enum
5*f4a2713aSLionel Sambuc   // RUN: %clang_cc1 -fsyntax-only -code-completion-at=-:4:6 < %s -o - | FileCheck -check-prefix=CHECK-CC1 %s
6*f4a2713aSLionel Sambuc   // CHECK-CC1: X
7*f4a2713aSLionel Sambuc   // CHECK-CC1: Y
8