Skip to content

Commit b22b618

Browse files
committed
more test coverage
1 parent 7aa4a7d commit b22b618

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

test/opaque_closure.jl

+3-1
Original file line numberDiff line numberDiff line change
@@ -271,14 +271,16 @@ end
271271
let ci = code_typed(+, (Int, Int))[1][1]
272272
ir = Core.Compiler.inflate_ir(ci)
273273
@test OC(ir, 2, false)(40, 2) == 42
274+
@test OC(ci)(40, 2) == 42
274275
end
275276

276277
let ci = code_typed((x, y...)->(x, y), (Int, Int))[1][1]
277278
ir = Core.Compiler.inflate_ir(ci)
278279
@test OC(ir, 2, true)(40, 2) === (40, (2,))
280+
@test OC(ci)(40, 2) === (40, (2,))
279281
end
280282

281283
let ci = code_typed((x, y...)->(x, y), (Int, Int))[1][1]
282-
@test OC(ci)(1, 2) === (1, (2,))
284+
@test_throws MethodError OC(ir, 2, true)(1, 2, 3)
283285
@test_throws MethodError OC(ci)(1, 2, 3)
284286
end

0 commit comments

Comments
 (0)