summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.benjamin/14664-1.C
blob: b5dc839f884796caea4b6d933291bc417dff575b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// 981203 bkoz
// g++/14664 - test
// Build don't link: 
// Special g++ Options: -fconst-strings

char foo[26];

void bar()
{
  //-g++: incompatible types in assignment of 'const char[]' to 'char[]'
  //-edg: expression must be a modifiable lvalue
  foo = "0123456789012345678901234"; // ERROR - // ERROR -
}