[type]
Parser

[grammar]
grammar T;
a : 'a' ('b'|'c') ;

[start]
a

[input]
aab

[errors]
"""line 1:1 extraneous input 'a' expecting {'b', 'c'}
"""

