Sign in
gnu
/
gcc
/
57ea00136418991e847e46a6946a81a1df70c9a4
/
.
/
gcc
/
testsuite
/
g++.old-deja
/
g++.rfg
/
00324_02-.C
blob: 4fc2a50641b8bd2eb8ad82d9bfdf1451d4d57cb9 [
file
] [
log
] [
blame
]
// { dg-do assemble }
// Another simple one. GCC corerctly gives errors for this code when the
// - -pedantic-errors options is used. g++ doesn't.
void
f
(
int
i
)
{
}
void
(*
fp
)(
void
);
int
i
;
void
test
()
{
i
?
f
:
fp
;
// { dg-error "" }
}