aboutsummaryrefslogtreecommitdiffstats
path: root/tests/indent/lua/cond.lua
blob: 9d0266a5a66174cc2310cc220ac1fa219b383528 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
local x = 10

if x > 3 then
  x = 3
elseif x < 3 then
  x = -3
else
  if x > 0 then
    x = 1
  end
  x = 0
end

if x > 2 then