[type]
Parser

[grammar]
grammar T;
a : A {<InputText():writeln()>} ;
A : 'b'* 'c' ;

[start]
a

[input]
c

[output]
"""c
"""

