aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/compound-lvalue-1.c
blob: 30ed58ff8a1ce0cc73aef694325f3e321ba5ddcc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* Test for deprecation of compound expressions as lvalues.  */
/* Origin: Joseph Myers <jsm@polyomino.org.uk> */
/* { dg-do compile } */
/* { dg-options "" } */

int x, y;

void
foo (void)
{
  (x, y) = 1; /* { dg-bogus "warning" "warning in place of error" } */
}
/* { dg-error "lvalue" "compound expression as lvalue" { target *-*-* } 11 } */