aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/cpp0x/nsdmi5.C
blob: bade28f3dcc5b8a16dc6420c08564f3c083c9541 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// { 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;
}