Bug 1921551 - React to sync sign in flow correctly r=android-reviewers,matt-tighe
[gecko.git] / js / src / tests / test262 / language / module-code / instn-iee-star-cycle-indirect-x_FIXTURE.js
blobaf7e63d101f3fff407a35c174cf2b121668903fa
1 // |reftest| skip -- not a test file
2 // Copyright (C) 2016 the V8 project authors. All rights reserved.
3 // This code is governed by the BSD license found in the LICENSE file.
5 // This module is visited two times:
6 // First when resolving the "x" binding and then another time to resolve the
7 // "y" binding.
8 export { y as x } from './instn-iee-star-cycle-2_FIXTURE.js';
9 export var y = 45;