node/deps/v8/test/mjsunit/es6/regress/regress-3741.js
Chris Dickinson d58e780504 deps: update v8 to 4.3.61.21
* @indutny's SealHandleScope patch (484bebc38319fc7c622478037922ad73b2edcbf9)
  has been cherry picked onto the top of V8 to make it compile.
* There's some test breakage in contextify.
* This was merged at the request of the TC.

PR-URL: https://github.com/iojs/io.js/pull/1632
2015-08-04 11:56:09 -07:00

27 lines
482 B
JavaScript

// Copyright 2014 the V8 project authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
//
// Flags: --allow-natives-syntax
'use strict';
function f24(deopt) {
let x = 1;
{
let x = 2;
{
let x = 3;
assertEquals(3, x);
}
deopt + 1;
assertEquals(2, x);
}
assertEquals(1, x);
}
for (var j = 0; j < 10; ++j) {
f24(12);
}
%OptimizeFunctionOnNextCall(f24);
f24({});