We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8aefd25 commit 0dea2c0Copy full SHA for 0dea2c0
test/split.jl
@@ -36,7 +36,7 @@ let
36
args = splitdef(:(f(a::Int = 1) = 1))[:args]
37
@test map(splitarg, args) == [(:a, :Int, false, 1)]
38
args = splitdef(:(f(a::Int ... = 1) = 1))[:args]
39
- @test map(splitarg, args) == [(:a, :Int, true, 1)]
+ @test map(splitarg, args) == [(:a, :Int, true, 1)] # issue 165
40
41
@splitcombine foo(x) = x+2
42
@test foo(10) == 12
0 commit comments