* s/nonstatic/non-static/ in the diagnostics, since the latter form outvoted the former by 28-2 in our diagnostics. * Fix the "use of member in static member function" diagnostic to correctly detect this situation inside a block or lambda. * Produce a more specific "invalid use of non-static member" diagnostic for the case where a nested class member refers to a member of a lexically-surrounding class. llvm-svn: 154073
21 lines
549 B
C++
21 lines
549 B
C++
// RUN: %clang_cc1 -fsyntax-only -verify -std=c++11 %s
|
|
|
|
struct S {
|
|
S *p = this; // ok
|
|
decltype(this) q; // expected-error {{invalid use of 'this' outside of a non-static member function}}
|
|
|
|
int arr[sizeof(this)]; // expected-error {{invalid use of 'this' outside of a non-static member function}}
|
|
int sz = sizeof(this); // ok
|
|
};
|
|
|
|
namespace CaptureThis {
|
|
struct X {
|
|
int n = 10;
|
|
int m = [&]{return n + 1; }();
|
|
int o = [&]{return this->m + 1; }();
|
|
int p = [&]{return [&](int x) { return this->m + x;}(o); }();
|
|
};
|
|
|
|
X x;
|
|
}
|