From 26a029d407be480d791972afb5975cf62c9360a6 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Fri, 19 Apr 2024 02:47:55 +0200 Subject: Adding upstream version 124.0.1. Signed-off-by: Daniel Baumann --- js/src/tests/test/expected/export/multi-header.js | 25 +++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 js/src/tests/test/expected/export/multi-header.js (limited to 'js/src/tests/test/expected/export/multi-header.js') diff --git a/js/src/tests/test/expected/export/multi-header.js b/js/src/tests/test/expected/export/multi-header.js new file mode 100644 index 0000000000..477395713d --- /dev/null +++ b/js/src/tests/test/expected/export/multi-header.js @@ -0,0 +1,25 @@ +// Copyright (C) 2017 Mozilla Corporation. All rights reserved. +// This code is governed by the BSD license found in the LICENSE file. + +/*--- +info: | + foo bar baz +description: | + Outside AsyncFunction, |await| is a perfectly cromulent LexicalDeclaration variable + name. Therefore ASI doesn't apply, and so the |0| where a |=| was expected is a + syntax error. +author: Jeff Walden +negative: + phase: early + type: SyntaxError +flags: +- module +esid: sec-let-and-const-declarations +features: +- foobar +---*/ + +function f() { + let + await 0; +} -- cgit v1.2.3