test262/test/language/module-code/top-level-await/module-import-resolution_FI...

15 lines
333 B
JavaScript

// Copyright (C) 2019 Leo Balter. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
await 1;
await 2;
export default await Promise.resolve(42);
export const y = await 39;
export const x = await 'named';
// Bonus: this rejection is not unwrapped
if (false) {
await Promise.reject(42);
}