aboutsummaryrefslogtreecommitdiff
path: root/test/script/basic/es6/let-const-switch.js.EXPECTED
blob: 90309bfe1afcd361d454fb54626f6fe73f29f6cc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
1
2
0
1
2
0
SyntaxError: test/script/basic/es6/let-const-switch.js#34:8<eval>:1:25 Unsupported let declaration in unprotected switch statement
switch (x) { case 0: let x = 1; }
                         ^
SyntaxError: test/script/basic/es6/let-const-switch.js#34:8<eval>:1:27 Unsupported const declaration in unprotected switch statement
switch (x) { case 0: const x = 1; }
                           ^