mirror of
https://github.com/denoland/deno.git
synced 2024-11-16 16:53:20 -05:00
57e95032c8
Fixes #6686
25 lines
405 B
Text
25 lines
405 B
Text
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);
|