Projet_SETI_RISC-V/riscv-gnu-toolchain/gcc/gcc/testsuite/gcc.dg/compound-lvalue-1.c
2023-03-06 14:48:14 +01:00

13 lines
348 B
C

/* 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 *-*-* } .-1 } */
}