// PR c++/33501 // { dg-do compile } class A; // { dg-error "forward declaration" } template struct X { static int f (T); static const T &make (); static const bool value = sizeof (f (make ())) == sizeof (int); // { dg-error "invalid use of incomplete type|initializing argument" } }; int main () { return X ::value; }