blob: 79921b55a56f142c2d06b20514a1ad1b28fcd47a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
// Copyright (C) 2016 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
description: Statement cannot contain an `import` declaration
esid: sec-modules
negative:
phase: parse
type: SyntaxError
flags: [module]
---*/
throw "Test262: This statement should not be evaluated.";
for (const x = 0; false;)
import v from './decl-pos-import-for-const.js';
|