1// { dg-do assemble  }
2int cond;
3int i;
4int *ip;
5
6void
7test ()
8{
9  cond ? i : ip;	/* { dg-error "" } pointer/integer mismatch */
10}
11