summaryrefslogtreecommitdiff
path: root/cli/tests/bundle/fixture02.out
blob: b14fc143b3e0df92f380cdf7375cd63650bbb3e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
const b = "b";
console.log(b);
const mod = function() {
    const c = "c";
    class C {
    }
    const c1 = c;
    const __default = C;
    const __default1 = C;
    return {
        c: c,
        default: C
    };
}();
const c = mod;
console.log(mod);