DEBSOURCES
Skip Quicknav
sources / js-of-ocaml / 5.9.1-1 / compiler / tests-jsoo / parser_1307.mly
1234567891011121314151617
%{ %} %token EOF %token TOKEN %start root %type <int> root %% root: | expr EOF { 0 } | expr error root { 1 } expr: TOKEN TOKEN { 1 }