aboutsummaryrefslogtreecommitdiff
path: root/test/input/rename/input.js
blob: 3008433a8c68db5d0716bc941117e5adf092326c (about) (plain)
1
2
3
4
5
6
function f(x) {
    return g(x);
    function g(x) {
        return x + 1;
    }
}