lean2/tests/lean/notation5.lean.expected.out
Leonardo de Moura 5feef27c2b feat(frontends/lean/notation_cmd): relax restriction on user defined tokens
Before this commit, Lean would forbid new tokens containing '(' or ')'.
We relax this restriction. Now, we just forbid new tokens starting with '(' or ending with ')'.
2016-01-02 13:58:46 -08:00

5 lines
359 B
Text

notation5.lean:3:0: error: invalid token `((`, it starts with '('
notation5.lean:5:0: error: invalid token `(`, it starts with '('
notation5.lean:7:0: error: invalid token `))`, it ends with ')'
notation5.lean:9:0: error: invalid token `,,`, it contains reserved character `,`
notation5.lean:11:0: error: invalid token `,`, it contains reserved character `,`