summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/template/instantiate1.C
blob: 828f2e9c56489a6029c61ec0ed1285cf6d6dc7ab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// { dg-do compile }
// Origin:

// PR c++/6716
// ICE in complex class structure when components are incomplete

template <class T> struct X {
  T t;				// { dg-error "incomplete" }
};

template <class T> struct Y {
  X<T> x;			// { dg-message "instantiated" }
};

template <class T> struct Z {	// { dg-error "declaration" }
  Y<Z<T> > y;			// { dg-message "instantiated" }
};

struct ZZ : Z<int>
{
};