repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[clang] Handle __declspec() attributes in using
[llvm-project.git]
/
clang
/
test
/
CodeCompletion
/
using-enum.cpp
blob
b1ecbd1d75a6b44e62eabe1ac06e85e7745851df
1
enum
class
AAA
{
X
,
Y
,
Z
};
2
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
};