Bug with conflict entry
The grammar
S -> S | a
produces a reduce/reduce conflict at TAB('$', I1) with the entries S' -> S
and S -> S
.
When selecting S -> S
, the parser ignores it and finishes successfully because it is in the same cell as the accept reduction.
Edited by Jan Hindges