aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.rfg/00324_02-.C
blob: 4055ba8432e1dd0b7c361b1b72a1d7f1bbc7f11f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// 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 - 
}