blob: 6ac42415b4376cab478f57f2c90247e44a3c2143 [file] [log] [blame]
// PR c++/33459
// { dg-prune-output "uninitialized" }
// { dg-prune-output "deleted" }
union A
{
int &i; // { dg-error "may not have reference type" }
};
void foo()
{
A();
}