Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
gcc.c-torture
/
execute
/
pr22061-3.c
blob: a805948182f318cfbfe5f7cd6cb93f1df77b5414 [
file
] [
log
] [
blame
]
void
bar
(
int
N
)
{
int
foo
(
char
a
[
2
][++
N
])
{
N
+=
4
;
return
sizeof
(
a
[
0
]);
}
if
(
foo
(
0
)
!=
2
)
abort
();
if
(
foo
(
0
)
!=
7
)
abort
();
if
(
N
!=
11
)
abort
();
}
int
main
()
{
bar
(
1
);
exit
(
0
);
}