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-cl] Ignore /Wv and /Wv:17 flags
[llvm-project.git]
/
clang
/
test
/
SemaCXX
/
qualified-member-enum.cpp
blob
750821bfd81ce1f52def904c4a2f86e8fce90873
1
// RUN: %clang_cc1 -fsyntax-only -verify %s
2
// expected-no-diagnostics
3
4
// Check that this doesn't crash.
5
struct
A
{
6
enum
{
LABEL
};
7
};
8
int
f
() {
9
return
A
().
A
::
LABEL
;
10
}
11