2019-03-12 09:01:49 +01:00
|
|
|
// Copyright 2018 the V8 project authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
|
|
// found in the LICENSE file.
|
|
|
|
|
2025-04-29 08:03:15 +02:00
|
|
|
// Flags: --allow-natives-syntax
|
2019-03-12 09:01:49 +01:00
|
|
|
|
|
|
|
var ns;
|
2019-08-16 11:32:46 +02:00
|
|
|
import('modules-skip-13.mjs').then(x => ns = x);
|
2019-03-12 09:01:49 +01:00
|
|
|
%PerformMicrotaskCheckpoint();
|
|
|
|
assertEquals(42, ns.default);
|
|
|
|
assertEquals(ns, ns.self);
|