summaryrefslogtreecommitdiff
path: root/cli/tests/bundle/fixture02.out
blob: f831aac2ef4c6af6cfe0846d3c8edb01e97ecbb7 (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";
    const c1 = c;
    class C {
    }
    const __default = C;
    const __default1 = C;
    return {
        c: c,
        default: C
    };
}();
const c = mod;
console.log(mod);