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