1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-15 16:43:44 -05:00
denoland-deno/cli/tests/bundle/fixture14.out
2020-11-21 13:17:42 +01:00

31 lines
446 B
Text

const mod = function() {
const a = [];
const a1 = a;
return {
a
};
}();
const a = mod;
const mod1 = function() {
const b = [];
const b1 = b;
return {
b
};
}();
const b = mod1;
const mod2 = function() {
const c = [];
const c1 = c;
return {
c
};
}();
const c = mod2;
const mod3 = function() {
const mod4 = [];
return {
mod: mod4
};
}();
console.log(mod3);