aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.old-deja/g++.bugs/900404_01.C
blob: 60e81129a8174dd15fd2c19ff5c6a43eb807d59f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// { dg-do assemble  }
// g++ 1.37.1 bug 900404_01

// g++ allows string initializers for known-length character arrays to be
// one character longer (counting the terminating null) than the actual
// length of the array to be initialized.

// The C++ Reference Manual (section 8.4.2) expressly prohibits this.

// Cfront 2.0 passes this test.

// keywords: arrays, initialization, array bounds

char cv[4] = "asdf";		// { dg-error "" } missed

int main () { return 0; }