[clang-cl] Ignore /Wv and /Wv:17 flags
[llvm-project.git] / clang / test / SemaCXX / tag-ambig.cpp
blobbbd17e7fe9b57164892cd6f678550c8055776733
1 // RUN: %clang_cc1 -fsyntax-only -verify %s
2 // expected-no-diagnostics
4 // <rdar://problem/9168556>
5 typedef struct Point Point;
7 namespace NameSpace {
8 class Point;
11 using namespace NameSpace;
13 class Test
15 public:
16 struct Point { };
17 virtual bool testMethod (Test::Point& p) = 0;
20 // PR8151
21 namespace A { struct Face {}; }
22 namespace B { struct Face {}; }
23 using namespace A;
24 using namespace B;
26 class C {
27 struct Face;
28 Face *mFaces;