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 484df21 commit 0f2212aCopy full SHA for 0f2212a
test/parser.jl
@@ -829,9 +829,11 @@ end
829
""" |> test_expr
830
@test "function f() ::T end" |> test_expr # ws closer
831
@test "import Base: +, -, .+, .-" |> test_expr
832
- @test "import Base.:+" |> test_expr
833
- @test "import Base.:⋅" |> test_expr
834
- @test "import Base.:sin, Base.:-" |> test_expr
+ if VERSION > v"1.6-"
+ @test "import Base.:+" |> test_expr
+ @test "import Base.:⋅" |> test_expr
835
+ @test "import Base.:sin, Base.:-" |> test_expr
836
+ end
837
@test "[a + + l]" |> test_expr # ws closer
838
@test "@inbounds C[i,j] = - α[i] * αjc" |> test_expr
839
@test "@inbounds C[i,j] = - n * p[i] * pj" |> test_expr
0 commit comments