aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/cast-lvalue-2.c
blob: 0d52a6253c75ae4abb680d3b21f707b4073fd9f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* 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 } */