Add LLVM runtime checks to build path
[clang/acc.git] / test / SemaCXX / this.cpp
blob0577d3c2b9bf1733f676c4afb84e25c91ee0264e
1 // RUN: clang-cc -fsyntax-only -verify %s
2 int x = this; // expected-error {{error: invalid use of 'this' outside of a nonstatic member function}}
4 void f() {
5 int x = this; // expected-error {{error: invalid use of 'this' outside of a nonstatic member function}}