summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/language/module-code/parse-err-decl-pos-export-for-in-var.js
blob: 97282ccef6ad0a3d7ef67f392a94e86408fb90bd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// |reftest| error:SyntaxError module
// 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 `export` declaration
esid: sec-modules
negative:
  phase: parse
  type: SyntaxError
flags: [module]
---*/

$DONOTEVALUATE();

for (var y in [])
  export default null;