blob: 1bd21b95e8c5b45ef06e410f0dbbec29522ea9af [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 ();
static const bool value = sizeof (f (make ())) == sizeof (int); // { dg-error "invalid use of incomplete type" }
};
int
main ()
{
return X <A>::value;
}