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