X-Git-Url: https://git.saurik.com/bison.git/blobdiff_plain/fec5f3c0cc2c50a779dafb928fda105c1782446b..afc4457605a784879fa57435bf45521ad7513771:/tests/reduce.at?ds=sidebyside diff --git a/tests/reduce.at b/tests/reduce.at index c5e4fda1..7e4977a0 100644 --- a/tests/reduce.at +++ b/tests/reduce.at @@ -933,7 +933,7 @@ S: 'a' A 'a' A: 'a' 'a' B ; B: 'a' - | %prec 'a' + | %empty %prec 'a' ; c: 'a' 'a' 'b' | A @@ -1533,8 +1533,8 @@ a: 'a' ; and multiple reductions. The first reduction has more lookaheads than the second, so the first should always be preferred as the default reduction if enabled. The second reduction has one lookahead. */ -b: ; -c: ; +b: %empty; +c: %empty; ]], dnl Visit each state mentioned above. [['a', 'a']],