Sign in
llvm
/
llvm-archive
/
48649d2c83b557841c9e5c978d9ab5af13cb52e5
/
.
/
llvm-gcc-4.0
/
gcc
/
testsuite
/
gcc.dg
/
20030331-2.c
blob: 38dcb02a7f670d207c7970be4dc3f68a20efd924 [
file
] [
log
] [
blame
]
/* APPLE LOCAL testsuite nested functions */
// { dg-options "-fnested-functions" }
extern
int
printf
(
const
char
*,
...);
int
foo
()
{
int
yd
;
float
in
[
1
][
yd
];
void
bar
()
{
printf
(
"%p\n"
,
in
[
0
]);
}
}