blob: 0c67ec14778dd729d515d65b501ce16c228cf6a3 [file] [log] [blame]
/* Contributed by Nicola Pero Mon Mar 5 19:57:11 CET 2001 */
int main (void)
{
inline int nested (void)
{
return 1;
}
if (nested () != 1)
{
exit (1);
}
return 0;
}