PR tree-optimization/83369 - Missing diagnostics during inlining
[official-gcc.git] / gcc / testsuite / gcc.dg / lvalue-5.c
blob514f35ed802bfb860a3f870b268406c033bc1842
1 /* Test assignment to elements of a string literal is a warning, not
2 an error. PR 27676. */
3 /* { dg-do compile } */
4 /* { dg-options "-pedantic-errors" } */
6 void
7 f (void)
9 "foo"[0] = 0; /* { dg-warning "assignment of read-only location" } */
10 "foo"[0]++; /* { dg-warning "increment of read-only location" } */
11 "foo"[0]--; /* { dg-warning "decrement of read-only location" } */
12 ++"foo"[0]; /* { dg-warning "increment of read-only location" } */
13 --"foo"[0]; /* { dg-warning "decrement of read-only location" } */