aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.old-deja/g++.pt/crash15.C
blob: 446a256b3ed6962b1d507f85b4cd74ef655af3aa (plain)
1
2
3
4
5
6
7
8
9
10
// { dg-do assemble  }

template <class T>
template <class U>
struct A { // { dg-error "" } too many template parameter lists
public:
  A() {}

  A(const A<T>& b) {}
};