comparison gcc/testsuite/gcc.dg/lvalue-5.c @ 131:84e7813d76e9

gcc-8.2
author mir3636
date Thu, 25 Oct 2018 07:37:49 +0900
parents 04ced10e8804
children
comparison
equal deleted inserted replaced
111:04ced10e8804 131:84e7813d76e9
1 /* Test assignment to elements of a string literal is a warning, not 1 /* Test assignment to elements of a string literal is a warning, not
2 an error. PR 27676. */ 2 an error. PR 27676. */
3 /* { dg-do compile } */ 3 /* { dg-do compile } */
4 /* { dg-options "-pedantic-errors" } */ 4 /* { dg-options "-O -pedantic-errors" } */
5 5
6 void 6 void
7 f (void) 7 f (void)
8 { 8 {
9 "foo"[0] = 0; /* { dg-warning "assignment of read-only location" } */ 9 "foo"[0] = 0; /* { dg-warning "assignment of read-only location" } */