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 ee83d1f commit e9baf11Copy full SHA for e9baf11
‎test/syntax.jl‎
@@ -2279,6 +2279,11 @@ end
2279
@test Meta.parse("a ⥷ b") == Expr(:call, :⥷, :a, :b)
2280
end
2281
2282
+# issue 57143
2283
+@testset "binary 🢲" begin
2284
+ @test Meta.parse("a 🢲 b") == Expr(:call, :🢲, :a, :b)
2285
+end
2286
+
2287
# only allow certain characters after interpolated vars (#25231)
2288
@test_parseerror("\"\$xà·´ \"",
2289
"interpolated variable \$x ends with invalid character \"à·´\"; use \"\$(x)\" instead.")
0 commit comments