summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.jason/lvalue2.C
blob: 35097f28f6fd304d7bc07bfbd4d7650005f8ecb7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// { dg-do assemble  }
// PRMS Id: 4892
// Bug: COND_EXPRs, MODIFY_EXPRs and COMPOUND_EXPRs aren't properly recognized
// as lvalues.

extern int foo;
int& f (int& a, int& b)
{
  return (foo ? a : b);		// { dg-bogus "" } 
}

int& g (int& a)
{
  return (a = 0);		// { dg-bogus "" } 
}

int& h (int& a, int& b)
{
  return (a = 1, b);		// { dg-bogus "" } 
}