blob: 85f093d7cc386e95ee95dd7625698f7a7693c75f [file] [log] [blame]
// Build don't link:
// Special g++ Options: -fnew-abi
// Origin: Mark Mitchell <mark@codesourcery.com>
struct S
{
};
struct T : public S
{
};
struct U : public T
{
};
void f (U);
int main ()
{
U u;
f (u);
}