aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.oliva/expr2.C
blob: dd364accfa4660e6ee5fd920654ef0a570e092de (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// { dg-do run { xfail *-*-* } }

// Copyright (C) 2000 Free Software Foundation

// by Alexandre Oliva <aoliva@cygnus.com>

int i, j;

const int &f(const int& I, const int& J) {
  // this must not be optimized to I because it's an lvalue
  return (I != J) ? I : J;
}

int main () {
  return (&f(i, j) != &j);
}