-
Describe the bug A same name that has been imported via super::* is available for some test cases but not for others, raising an To Reproduce
Expected behavior Expected behavior is both case should at least compile and run, as all the names used in
Which is interesting, in that if you completely remove My suspicion is this is caused by the nested rule in the grammar file( Additional context
Grateful for this wonderful tool, so much fun to play with! :) |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
it seems there's a missing comma in ...
simple_command(8, 10 [
... is changed to: ...
simple_command(8, 10, [
... it will compile and run |
Beta Was this translation helpful? Give feedback.
-
Thanks @tomtau for spotting my silly mistake! How unexpected! |
Beta Was this translation helpful? Give feedback.
it seems there's a missing comma in
test2
-- when this line:is changed to:
it will compile and run