§5.19/2 (on the second page; it really should be split into many paragraphs) forbids constant expressions containing
— an lvalue-to-rvalue conversion (4.1) unless it is applied to
— a glvalue of integral or enumeration type that refers to a non-volatile const object with a preceding initialization, initialized with a constant expression, or
— a glvalue of literal type that refers to a non-volatile object defined with constexpr, or that refers to a sub-object of such an object
str[1000] translates to * ( str + 1000 ), which does not refer to a subobject of str, in contrast with an in-bounds array access. So this is a diagnosable rule, and the compiler is required to complain.
EDIT: It seems there's some confusion about how this diagnosis comes about. The compiler checks an expression against §5.19 when it needs to be constant. If the expression doesn't satisfy the requirements, the compiler is required to complain. This doesn't involve evaluating the expression, and it would be silly to have the compiler attempt to do so. In effect, it is required to validate constant expressions against anything that might otherwise cause UB.
fail()at compile time. Since it cannot, it produces an error. Sounds logical to me. – Kerrek SB Sep 14 '11 at 18:45Nor to fail during linking. Or to fail in some weird way at run time, or even during compile time? – Flexo♦ Sep 14 '11 at 18:51§ 5.19 [expr.const]in the draft I have. Clearly you don't want buffer overflows in your compiler (lookout ideone!), but that doesn't mean the only sane solution is an error message. – Flexo♦ Sep 14 '11 at 18:53