summaryrefslogtreecommitdiff
path: root/deps/v8/test/message/fail/modules-duplicate-export4.js
blob: 1bc60dad609c12094e5c426c6ae27881e805727c (plain)
1
2
3
4
5
6
7
8
9
// Copyright 2016 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

export let x = 42;
let y;
export {y as z, y as x, y};