Warning, /frameworks/ktexteditor/autotests/input/indent/julia/nested1/expected is written in an unsupported language. File is not indexed.

0001 if x && y || z # abctestcomment
0002     z = 1
0003     a = Vector{Int}()
0004     for i in 1:5
0005         push!(a, i)
0006         if i == 3
0007             print("TEST")
0008         else
0009             nothing
0010         end
0011         print(i)
0012         print(i^2)
0013     end
0014 end