blob: f728865961fec18264bf2bf9eadb565f60d76a36 [file] [log] [blame]
// 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"; // ERROR - missed
int main () { return 0; }