summaryrefslogtreecommitdiff
path: root/t/t4018/r-indent-nested
blob: 30412e6c79ca7e4cd453e7eeacb0132e76bdbac1 (plain)
1
2
3
4
5
6
7
8
9
10
LEFT = function(a, b) {
    c = mean(a, b)
    RIGHT = function(d, e) {
        f = var(d, e)
        g = f + 1
        ChangeMe()
        return (g)
    }
    return (RIGHT(2, 3))
}