blob: 1e63c645b6c16f05da4b258c4202b0c7e70837c8 [file] [log] [blame]
// { dg-do run }
// 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);
}