9 void test(N::Color color
) {
10 color
= N::Color::Red
;
12 if (color
== N::Color::Red
) {}
13 // FIXME: ideally, we should not show 'Red' on the next line.
14 else if (color
== N::Color::Blue
) {}
16 // RUN: %clang_cc1 -fsyntax-only -code-completion-at=%s:%(line-6):11 %s -o - | FileCheck %s
17 // RUN: %clang_cc1 -fsyntax-only -code-completion-at=%s:%(line-6):8 %s -o - | FileCheck %s
18 // RUN: %clang_cc1 -fsyntax-only -code-completion-at=%s:%(line-6):16 %s -o - | FileCheck %s
19 // RUN: %clang_cc1 -fsyntax-only -code-completion-at=%s:%(line-5):21 %s -o - | FileCheck %s
20 // CHECK: Blue : [#N::Color#]N::Blue
21 // CHECK: color : [#N::Color#]color
22 // CHECK: Orange : [#N::Color#]N::Orange
23 // CHECK: Red : [#N::Color#]N::Red