aboutsummaryrefslogtreecommitdiff
path: root/test/compress/issue-1569.js
blob: 5f0bca34b88e84fbc9706f4559edf2aaec4715c4 (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
inner_reference: {
    options = {
        side_effects: true,
    }
    input: {
        !function f(a) {
            return a && f(a - 1) + a;
        }(42);
        !function g(a) {
            return a;
        }(42);
    }
    expect: {
        !function f(a) {
            return a && f(a - 1) + a;
        }(42);
        !void 0;
    }
}