1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-16 16:53:20 -05:00
denoland-deno/cli/tests/bundle/fixture14.out

26 lines
405 B
Text
Raw Normal View History

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