PR c++/86728 - C variadic generic lambda.
[official-gcc.git] / gcc / testsuite / g++.dg / template / incomplete4.C
blob7cff66bdc04d158abb57fd55a77eabbef0c84ee8
1 // PR c++/33501
2 // { dg-do compile }
4 class A;        // { dg-message "forward declaration" }
6 template <typename T> struct X
8   static int f (T);             // { dg-message "initializing" }
9   static const T &make ();
12 int
13 main ()
15   return X<A>::f (X<A>::make ());       // { dg-error "invalid use of incomplete type" }