repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
history
|
raw
|
HEAD
2015-09-24 Vladimir Makarov <vmakarov@redhat.com>
[official-gcc.git]
/
gcc
/
testsuite
/
objc
/
execute
/
nested-2.m
blob
0c67ec14778dd729d515d65b501ce16c228cf6a3
1
/* Contributed by Nicola Pero Mon Mar 5 19:57:11 CET 2001 */
2
3
int main (void)
4
{
5
inline int nested (void)
6
{
7
return 1;
8
}
9
10
if (nested () != 1)
11
{
12
exit (1);
13
}
14
15
return 0;
16
}
17