lean4-htt/tests/lean/414.lean
Leonardo de Moura 0241d7c197 chore: fix tests
2022-04-01 11:34:50 -07:00

14 lines
169 B
Text

macro_rules (kind := num)
| `($n:num) => `("world")
#check 2
macro_rules
| `($n:num) => `("hello")
#check 2
macro_rules (kind := num)
| n => `("boo")
#check 2