lean4-htt/tests/lean/801.lean
Sebastian Ullrich e400b02a05 test: wrong test
2022-02-02 13:17:30 +01:00

15 lines
202 B
Text

syntax "a" num : term
macro_rules
| `(a 0) => `("zero")
| `(a 1) => `("one")
#check a 1
syntax "b" str : term
macro_rules
| `(b "foo") => `("foo!")
| `(b "bla") => `("bla!")
#check b "bla"