blob: 7cff66bdc04d158abb57fd55a77eabbef0c84ee8 [file] [log] [blame]
// PR c++/33501
// { dg-do compile }
class A; // { dg-message "forward declaration" }
template <typename T> struct X
{
static int f (T); // { dg-message "initializing" }
static const T &make ();
};
int
main ()
{
return X<A>::f (X<A>::make ()); // { dg-error "invalid use of incomplete type" }
}