2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / objc / execute / nested-2.m
blob0c67ec14778dd729d515d65b501ce16c228cf6a3
1 /* Contributed by Nicola Pero Mon Mar  5 19:57:11 CET 2001 */
3 int main (void)
5   inline int nested (void)
6     {
7       return 1;
8     }
10   if (nested () != 1)
11     {
12       exit (1);
13     }
15   return 0;