OSDN Git Service

gcc/cp/
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / expr / cond3.C
1 const int i = 7;
2 const int j = 3;
3
4 void f(bool b) {
5   &(b ? i : j);
6 }