blob: 13158b93a4444ebd15b551f7b6978e9b88910e29 (
plain)
1
2
3
4
5
6
|
// 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}}
}
|