diff options
| author | Nathan Reiner <nathan@nathanreiner.xyz> | 2025-05-14 16:39:23 +0200 |
|---|---|---|
| committer | Nathan Reiner <nathan@nathanreiner.xyz> | 2025-05-14 16:39:23 +0200 |
| commit | 9c0f41abba755ae000b058af137b2925b571d6a1 (patch) | |
| tree | d9b44d3f13b3a8d14f1c0c84961f286484bc40c3 /grammar/simple-cross-recursive.grm | |
| parent | 3fa83926b88a8000c3183377c0ddfe3222503c76 (diff) | |
add new grammar tests
Diffstat (limited to 'grammar/simple-cross-recursive.grm')
| -rw-r--r-- | grammar/simple-cross-recursive.grm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/grammar/simple-cross-recursive.grm b/grammar/simple-cross-recursive.grm index 6377886..d061cf7 100644 --- a/grammar/simple-cross-recursive.grm +++ b/grammar/simple-cross-recursive.grm @@ -1,2 +1,2 @@ -main -> other 'b' -other -> main | 'b' +main -> other 'a' +other -> main | 'a' |