Sign in
cobalt
/
cobalt
/
8a7c8792318a721e24f358c0403229570da8402b
/
.
/
src
/
v8
/
test
/
message
/
fail
/
modules-duplicate-export4.js
blob: 1bc60dad609c12094e5c426c6ae27881e805727c [
file
] [
log
] [
blame
]
// 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
};