From 5913117b4977fd10895e2c483b3fb9051b5cdf04 Mon Sep 17 00:00:00 2001 From: Claire Foster Date: Tue, 30 Jul 2024 17:35:11 +1000 Subject: [PATCH] Test to cover function declaration with `var""` syntax --- test/parser.jl | 1 + 1 file changed, 1 insertion(+) diff --git a/test/parser.jl b/test/parser.jl index 35e53ec8..80b7ffec 100644 --- a/test/parser.jl +++ b/test/parser.jl @@ -581,6 +581,7 @@ tests = [ "function f end" => "(function f)" "function f \n\n end" => "(function f)" "function \$f end" => "(function (\$ f))" + "function var\".\" end" => "(function (var .))" "macro f end" => "(macro f)" # Function argument list "function f(x,y) end" => "(function (call f x y) (block))"