aboutsummaryrefslogtreecommitdiff
path: root/deps/v8/test/mjsunit/modules-imports8.js
blob: 56ea60f4c36f397ded50a247ed0208db8b899475 (plain)
1
2
3
4
5
6
7
8
9
10
11
// 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.

// MODULE
// Flags: --harmony-namespace-exports

import {a, b} from "./modules-skip-9.js";
assertSame(a, b);
assertEquals(42, a.default);
assertEquals(1, a.a);