blob: 13158b93a4444ebd15b551f7b6978e9b88910e29 [file] [log] [blame]
// RUN: %clang_cc1 -fsyntax-only -verify %s
int x = this; // expected-error {{invalid use of 'this' outside of a nonstatic member function}}
void f() {
int x = this; // expected-error {{invalid use of 'this' outside of a nonstatic member function}}
}