[clang] Handle __declspec() attributes in using
[llvm-project.git] / clang / test / CodeCompletion / using-enum.cpp
blobb1ecbd1d75a6b44e62eabe1ac06e85e7745851df
1 enum class AAA { X, Y, Z };
3 namespace N2 {
4 using enum AAA;
5 // RUN: %clang_cc1 -std=c++20 -fsyntax-only -code-completion-at=%s:%(line-1):14 %s | FileCheck -check-prefix=CHECK-CC1 %s
6 // CHECK-CC1: COMPLETION: AAA
7 };