From: Ovidiu Predescu Date: Wed, 7 Mar 2001 05:18:17 +0000 (+0000) Subject: Added. Contributed by Nicola Pero. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=81fe576ae07a0d1d056d6776cb6047431ac1bf1f;p=gcc.git Added. Contributed by Nicola Pero. From-SVN: r40289 --- diff --git a/gcc/testsuite/objc/execute/nested-2.m b/gcc/testsuite/objc/execute/nested-2.m new file mode 100644 index 00000000000..0c67ec14778 --- /dev/null +++ b/gcc/testsuite/objc/execute/nested-2.m @@ -0,0 +1,17 @@ +/* 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; +} +