Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / CodeCompletion / end-of-ident-macro.cpp
blob986303105df98987b91d2eb26443e608d0ecd29d
1 #define FUNC(X) X
2 #define FUNCTOR
3 using FUNCTION = int();
4 // We should get all three completions when the cursor is at the beginning,
5 // middle, or end.
6 FUNC(int) a = 10;
7 // ^FUNC(int)
8 // RUN: %clang_cc1 -code-completion-at=%s:%(line-2):1 -code-completion-macros %s | FileCheck %s
9 // FU^NC(int)
10 // RUN: %clang_cc1 -code-completion-at=%s:%(line-4):3 -code-completion-macros %s | FileCheck %s
11 // FUNC^(int)
12 // RUN: %clang_cc1 -code-completion-at=%s:%(line-6):5 -code-completion-macros %s | FileCheck %s
14 // CHECK: COMPLETION: FUNC : FUNC(<#X#>)
15 // CHECK: COMPLETION: FUNCTION : FUNCTION
16 // CHECK: COMPLETION: FUNCTOR : FUNCTOR