The following code should generate runtime exception during evaluation of c[2] = b[2] + a[2], but it doesn't happen. auto b = [1, 2]; auto a = [2, 3, 4]; int c [] = new int[3]; c[] = b[] + a[];
*** This issue has been marked as a duplicate of issue 2547 ***