blob: 88fec4a3b9718625fc6a1523cf548ca29081ca84 [file] [log] [blame]
Ben Murdoch4a90d5f2016-03-22 12:00:34 +00001// Copyright 2015 the V8 project authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5"use strict";
6var s = "";
7for (var i = 16; i < 1085; i++) {
8 s += ("var a" + i + " = " + i + ";");
9}
10s += "const x = 10;" +
11 "assertEquals(10, x); x = 11; assertEquals(11, x)";
12assertThrows(function() { eval(s); });