blob: b8bf4b7d3aafb38d28d2af3bd30c26bff73d0f1a [file] [log] [blame]
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001// RUN: clang -fsyntax-only -verify %s
2int x = this; // expected-error {{error: invalid use of 'this' outside of a nonstatic member function}}
3
4void f() {
5 int x = this; // expected-error {{error: invalid use of 'this' outside of a nonstatic member function}}
6}