mirror of https://github.com/tc39/test262.git
25 lines
384 B
JavaScript
25 lines
384 B
JavaScript
// 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: >
|
|
global and block scope let
|
|
---*/
|
|
let x;
|
|
let y = 2;
|
|
|
|
// Block local
|
|
{
|
|
let y;
|
|
let x = 3;
|
|
}
|
|
|
|
assert.sameValue(x, undefined);
|
|
assert.sameValue(y, 2);
|
|
|
|
if (true) {
|
|
let y;
|
|
assert.sameValue(y, undefined);
|
|
}
|
|
|