[type]
Parser

[grammar]
grammar T;
a : 'a' 'b' ;

[start]
a

[input]
aab

[errors]
"""line 1:1 extraneous input 'a' expecting 'b'
"""

