nitcc/tests: add lexer-shortest.sablecc
[nit.git] / contrib / nitcc / tests / lexer-shortest.sablecc
1 Grammar x;
2
3 Lexer
4     c = Shortest ('{' Any* '}') ;
5
6 Parser
7     p = c ;
8