[clang-cl] Ignore /Wv and /Wv:17 flags
[llvm-project.git] / clang / test / SemaCXX / this.cpp
blob27ee1e84a7079707585a1003426b3beeb00e1011
1 // RUN: %clang_cc1 -fsyntax-only -verify %s
2 int x = this; // expected-error {{invalid use of 'this' outside of a non-static member function}}
4 void f() {
5 int x = this; // expected-error {{invalid use of 'this' outside of a non-static member function}}