repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Update concepts branch to revision 131834
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.c-torture
/
compile
/
20021204-1.c
blob
4e8d3fefcbb492d91aa622c962b3a8c08da9544e
1
/* PR c/7622 */
2
3
/* Verify that GCC can handle the mix of
4
extern inline and nested functions. */
5
6
extern inline
int
t
()
7
{
8
int
q
() {
return
0
; }
9
10
return
q
();
11
}
12
13
int
foo
()
14
{
15
return
t
();
16
}