aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/expr/cond3.C
blob: 50a4d9a13004c15d9afc6f9153e9a5f1ccf0058f (plain)
1
2
3
4
5
6
const int i = 7;
const int j = 3;

void f(bool b) {
  &(b ? i : j);
}