Skip to content

Commit 0dea2c0

Browse files
Point out the test for 165
Co-authored-by: Cédric St-Jean <[email protected]>
1 parent 8aefd25 commit 0dea2c0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/split.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ let
3636
args = splitdef(:(f(a::Int = 1) = 1))[:args]
3737
@test map(splitarg, args) == [(:a, :Int, false, 1)]
3838
args = splitdef(:(f(a::Int ... = 1) = 1))[:args]
39-
@test map(splitarg, args) == [(:a, :Int, true, 1)]
39+
@test map(splitarg, args) == [(:a, :Int, true, 1)] # issue 165
4040

4141
@splitcombine foo(x) = x+2
4242
@test foo(10) == 12

0 commit comments

Comments
 (0)