Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
gcc.c-torture
/
compile
/
20021204-1.c
blob: 4e8d3fefcbb492d91aa622c962b3a8c08da9544e [
file
] [
log
] [
blame
]
/* PR c/7622 */
/* Verify that GCC can handle the mix of
extern inline and nested functions. */
extern
inline
int
t
()
{
int
q
()
{
return
0
;
}
return
q
();
}
int
foo
()
{
return
t
();
}