Mercurial > hg > CbC > CbC_gcc
comparison gcc/testsuite/gcc.dg/cond-lvalue-1.c @ 111:04ced10e8804
gcc 7
author | kono |
---|---|
date | Fri, 27 Oct 2017 22:46:09 +0900 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
68:561a7518be6b | 111:04ced10e8804 |
---|---|
1 /* Test for deprecation of conditional expressions as lvalues. */ | |
2 /* Origin: Joseph Myers <jsm@polyomino.org.uk> */ | |
3 /* { dg-do compile } */ | |
4 /* { dg-options "" } */ | |
5 | |
6 int x, y, z; | |
7 | |
8 void | |
9 foo (void) | |
10 { | |
11 (x ? y : z) = 1; /* { dg-bogus "warning" "warning in place of error" } */ | |
12 /* { dg-error "lvalue" "conditional expression as lvalue" { target *-*-* } .-1 } */ | |
13 } |