summaryrefslogtreecommitdiff
path: root/cli/tests/bundle/fixture14.out
blob: 06e93a7cc5252fdd3f18617cf7b3a8b2dbf422eb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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);