aboutsummaryrefslogtreecommitdiffstats
path: root/test/language/statements/while/decl-const.js
blob: e037a2047a9fe4183eaed78abde8a38f5ea17c85 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright (C) 2016 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
description: Lexical declaration (const) not allowed in statement position
esid: sec-while-statement
es6id: 13.7.3
negative:
  phase: parse
  type: SyntaxError
---*/

throw "Test262: This statement should not be evaluated.";

while (false) const x = null;