blob: 27ee1e84a7079707585a1003426b3beeb00e1011 [file] [log] [blame]
Daniel Dunbara5728872009-12-15 20:14:24 +00001// RUN: %clang_cc1 -fsyntax-only -verify %s
Richard Smitha85cf392012-04-05 01:13:04 +00002int x = this; // expected-error {{invalid use of 'this' outside of a non-static member function}}
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00003
4void f() {
Richard Smitha85cf392012-04-05 01:13:04 +00005 int x = this; // expected-error {{invalid use of 'this' outside of a non-static member function}}
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00006}