blob: 85bd689a2585fbdff7adc69e20eb0cc247a3e3b8 [file] [log] [blame]
/* APPLE LOCAL file radar 5805175 - blocks */
/* Test that pre/post incr/decr of copied-in variable cuases proper diagnostic. */
/* { dg-do compile } */
/* { dg-options "-fblocks" } */
void foo() {
static int s_i = 10;
int local;
^ { ++s_i; };
^ { local--; }; /* { dg-error "decrement of read-only variable" } */
++s_i;
}