blob: 62acbe03e1991553f838354fa628361c9d8de04c [file] [log] [blame]
// Build don't link:
// GROUPS passed old-abort
class First {
public:
First(const First& a);
};
class Second {
int i;
First f;
public:
~Second() {}
Second func();
};
void foo()
{
extern Second x;
x = x.func();
}