blob: 745a7d8e492ba3b867e7020d81e0fe4d2867c4d1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
// |reftest| error:SyntaxError
// 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
---*/
$DONOTEVALUATE();
while (false) const x = null;
|