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 b51d785 commit 9a59687Copy full SHA for 9a59687
‎test/syntax.jl‎
@@ -2287,6 +2287,11 @@ end
2287
@test Meta.parse("a ⥷ b") == Expr(:call, :⥷, :a, :b)
2288
end
2289
2290
+# issue 57143
2291
+@testset "binary 🢲" begin
2292
+ @test Meta.parse("a 🢲 b") == Expr(:call, :🢲, :a, :b)
2293
+end
2294
+
2295
# only allow certain characters after interpolated vars (#25231)
2296
@test_parseerror("\"\$xà·´ \"",
2297
"interpolated variable \$x ends with invalid character \"à·´\"; use \"\$(x)\" instead.")
0 commit comments