parallelization_phase: use `ANode::validate` after AST shenanigans.
[nit.git] / contrib / nitcc / tests / not_slr.sablecc
1 Grammar not_slr;
2
3 Parser
4
5 s = g '=' d | d ;
6 g = '*' d | 'id' ;
7 d = g ;