diff options
| author | Kevin Newton <kddnewton@gmail.com> | 2023-09-28 10:51:57 -0400 |
|---|---|---|
| committer | Kevin Newton <kddnewton@gmail.com> | 2023-09-29 09:51:23 -0400 |
| commit | 38e3cafe62637b138700e04a8a6a1ee73fe5a5f2 (patch) | |
| tree | 7b2347aa1ff1c578ff0ecb17954f1d28f67c5ca1 /test/ruby | |
| parent | 396042a25c6c8f84cd08f9e5f10d46b834802c9f (diff) | |
Compile implicit nodes
Diffstat (limited to 'test/ruby')
| -rw-r--r-- | test/ruby/test_compile_prism.rb | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test/ruby/test_compile_prism.rb b/test/ruby/test_compile_prism.rb index 11d59a4373..6dc4f70c49 100644 --- a/test/ruby/test_compile_prism.rb +++ b/test/ruby/test_compile_prism.rb @@ -312,6 +312,9 @@ module Prism test_prism_eval("{ a: :a }") test_prism_eval("{ a: :a, b: :b }") test_prism_eval("a = 1; { a: a }") + test_prism_eval("a = 1; { a: }") + test_prism_eval("{ to_s: }") + test_prism_eval("{ Prism: }") end ############################################################################ |
