blob: bade28f3dcc5b8a16dc6420c08564f3c083c9541 [file] [log] [blame]
// { dg-do compile { target c++11 } }
struct X
{
int x = 5;
int f() { return x; }
};
struct Y : X
{
int y = this->x;
};
template <class T> struct Z : T
{
int y = this->f();
};
int main()
{
Y foo;
Z<X> bar;
}