Bug 1892041 - Part 2: Update test262. r=spidermonkey-reviewers,dminor
[gecko.git] / js / src / tests / test262 / language / module-code / eval-export-dflt-gen-anon-semi.js
blobc286b18cacbd4429f8d54ca5142bdfb66f44c843
1 // |reftest| module
2 // Copyright (C) 2016 the V8 project authors. All rights reserved.
3 // This code is governed by the BSD license found in the LICENSE file.
4 /*---
5 description: >
6     An exported default "anonymous" generator function declaration does not
7     need to be terminated with a semicolon or newline
8 esid: sec-moduleevaluation
9 flags: [module]
10 features: [generators]
11 ---*/
13 var count = 0;
15 export default function* () {} if (true) { count += 1; }
17 assert.sameValue(count, 1);
19 reportCompare(0, 0);