aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/cpp0x/nsdmi-template4.C
blob: ff8dc7e932bc9d137ec1f9f422f575c1b412e2ae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// PR c++/57887
// { dg-do compile { target c++11 } }

struct B
{
  template<int N>
  struct A
  {
    int X = N;
  };
};

template<int M>
struct C
{
  int Y = M;

  template<int N>
  struct A
  {
    int X = N;
    int Y = M;
  };
};