blob: 0d52a6253c75ae4abb680d3b21f707b4073fd9f0 [file] [log] [blame]
/* Test for error on casts as lvalues. Casts to same type. */
/* Origin: Joseph Myers <jsm@polyomino.org.uk> */
/* { dg-do compile } */
/* APPLE LOCAL non lvalue assign */
/* { dg-options "-fno-non-lvalue-assign" } */
int x;
void
foo (void)
{
(int) x = 1; /* { dg-bogus "warning" "warning in place of error" } */
}
/* APPLE LOCAL non lvalue assign */
/* { dg-error "lvalue" "cast as lvalue" { target *-*-*} 12 } */