aboutsummaryrefslogtreecommitdiffstats
path: root/tests/indent/lua/func.lua
blob: 1f95ca97a706fb9e37bf965f7142149c95baef57 (plain) (blame)
1
2
3
4
5
6
7
8
9
function foo(x)
  local bar = function(a, b, c)
    return a + b + c
  end
  return bar(
    x,
    1,
    2)
end