blob: 4055ba8432e1dd0b7c361b1b72a1d7f1bbc7f11f [file] [log] [blame]
// Another simple one. GCC corerctly gives errors for this code when the
// - -pedantic-errors options is used. g++ doesn't.
// Build don't link:
void f (int i) { }
void (*fp)(void);
int i;
void
test ()
{
i ? f : fp; // ERROR -
}