summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/template/incomplete4.C
blob: 6129e0d6fd057b4456cf8c0ee84165fdb1a84a6d (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);
  static const T &make ();
};

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