summaryrefslogtreecommitdiff
path: root/cli/tests/bundle/fixture14.out
blob: cb0b4834f07ec83e512eb119c0c2ddcd1950dfab (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
26
27
28
29
30
31
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);