blob: 30be26749c94aa7018560c51e90be878e572adb2 [file] [log] [blame]
// PR c++/33501
// { dg-do compile }
class A; // { dg-error "forward declaration" }
int f (A); // { dg-error "initializing" }
const A &make ();
int
main ()
{
return f (make ()); // { dg-error "invalid use of incomplete type" }
}