[type]
Parser

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

[start]
a

[input]
ad

[errors]
"""line 1:1 missing {'b', 'c'} at 'd'
"""

