Bug 1892041 - Part 2: Update test262. r=spidermonkey-reviewers,dminor
[gecko.git] / js / src / tests / test262 / language / module-code / eval-export-dflt-fun-named-semi.js
blobdadc923fbccc7d58cdcdda0f465e332500d12061
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 "named" function declaration does not need to be
7     terminated with a semicolon or newline
8 esid: sec-moduleevaluation
9 flags: [module]
10 ---*/
12 var count = 0;
14 export default function f() {} if (true) { count += 1; }
16 assert.sameValue(count, 1);
18 reportCompare(0, 0);