aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/template/incomplete4.C
blob: f2832a73c4ceeef54ebccb7a9205962c08712593 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// PR c++/33501
// { dg-do compile }

class A;	// { dg-error "forward declaration" }

template <typename T> struct X
{
  static int f (T);		// { dg-error "initializing" }
  static const T &make ();
};

int
main ()
{
  return X<A>::f (X<A>::make ());	// { dg-error "invalid use of incomplete type" }
}