summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/language/block-scope/leave/x-after-break-to-label.js
blob: 257e2441ac1736aac07006fff00788b6cb1e7709 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// 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: >
    x after break to label
---*/
{
  let x = 2;
  L: {
    let x = 3;
    assert.sameValue(x, 3);
    break L;
    assert(false);
  }
  assert.sameValue(x, 2);
}

reportCompare(0, 0);