[type]
Parser

[grammar]
grammar T;
a : t=~'x' 'z' {<writeln("$t.text")>} ;

[start]
a

[input]
zz

[output]
"""z
"""

