blob: d854ffdec07bc04d90693f7b4b14ee3f01813ea6 [file] [log] [blame]
// { dg-do assemble }
// PRMS Id: 4695
// Bug: g++ wrongly requires A to be complete here.
struct A;
void foo(const A &);
void bar(A *p)
{
foo(*p);
}