Skip to content

Commit 9a59687

Browse files
Add parse test for 🢲
1 parent b51d785 commit 9a59687

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

‎test/syntax.jl

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2287,6 +2287,11 @@ end
22872287
@test Meta.parse("a ⥷ b") == Expr(:call, :⥷, :a, :b)
22882288
end
22892289

2290+
# issue 57143
2291+
@testset "binary 🢲" begin
2292+
@test Meta.parse("a 🢲 b") == Expr(:call, :🢲, :a, :b)
2293+
end
2294+
22902295
# only allow certain characters after interpolated vars (#25231)
22912296
@test_parseerror("\"\$xà·´ \"",
22922297
"interpolated variable \$x ends with invalid character \"à·´\"; use \"\$(x)\" instead.")

0 commit comments

Comments
 (0)