summaryrefslogtreecommitdiffstats
path: root/gcc/testsuite/gcc.dg/fwritable-strings-1.c
blob: 652a0845fd058403161456728aa7d7e4dd5566bf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* PR c/12818 */
/* Origin: <fnf@ninemoons.com> */

/* { dg-do run } */
/* { dg-options "-fwritable-strings" } */
/* { dg-error "-fwritable-strings is deprecated" "" { target *-*-* } 0 } */

extern void abort(void);

char *names[] = {"alice", "bob", "john"};

int main (void)
{
  if (names[1][0] != 'b')
    abort();

  return 0;
}
OpenPOWER on IntegriCloud