blob: 0577d3c2b9bf1733f676c4afb84e25c91ee0264e [file] [log] [blame]
Daniel Dunbard7d5f022009-03-24 02:24:46 +00001// RUN: clang-cc -fsyntax-only -verify %s
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00002int 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}