blob: 2eac0ae58411d91a7646b3cab088f3856c4489fc [file] [log] [blame]
// Copyright (C) 2011 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
es6id: 13.1
description: >
return from block
---*/
function fn() {
let x = 3;
{
let y = 6;
return x + y;
}
}
assert.sameValue(fn(), 9);