From bb05e88a215f1826f4a5573d532eec2d7a31887c Mon Sep 17 00:00:00 2001 From: "Steven G. Johnson" Date: Wed, 28 Dec 2016 08:18:07 -0500 Subject: [PATCH] put .. test in a let --- test/parse.jl | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/test/parse.jl b/test/parse.jl index a639bc988a0ef..6ccb86cf7a052 100644 --- a/test/parse.jl +++ b/test/parse.jl @@ -864,5 +864,6 @@ end @test QualifiedStringMacro.SubModule.x"" === 1 @test QualifiedStringMacro.SubModule.y`` === 2 -..(x,y) = x + y -@test 3 .. 4 === 7 +let ..(x,y) = x + y + @test 3 .. 4 === 7 +end