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