blob: 9256c5f9da58709720c2796f9b91ff373a0b2788 [file] [log] [blame]
// Build don't link:
// Origin: Mark Mitchell <mitchell@codesourcery.com>
// Special g++ Options: -O2
inline void f ()
{
int n;
int i[n];
}
void g ()
{
f ();
}
void h ()
{
f ();
}