OSDN Git Service

fix
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.old-deja / g++.other / cvqual1.C
1 // Build don't link:
2 // Origin: Mark Mitchell <mark@codesourcery.com>
3
4 int i = 3;
5 void *pv=&i;
6 const void* pcv=&i;
7 int main() 
8
9     pcv = 0 ? pv : pcv;
10 }