Merge: misc/vim: update the vim plugin to use core instead of standard
[nit.git] / contrib / nitcc / tests / conflict-bracket.sablecc
1 Grammar bracket;
2 Parser
3
4 e = '0' | '[' e '[' | e '[' e ']';
5
6 /*
7 [0 . [0]]
8 [0 . [
9 */