aboutsummaryrefslogtreecommitdiffstats
path: root/tests/indent/julia/argument_list.jl
blob: 747a36efc6814ad37c1e45ec0e54681fca77e253 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
function test(a::Number,
              b::Float64,
              c::Union{Float64, Integer},
              d::Bool)
end

function test(
    a::Number,
    b::Float64,
    c::Union{Float64, Integer},
    d::Bool
)
end