lean4-htt/tests/lean/namelit.lean
Leonardo de Moura ffefd8db36 chore: remove weird syntax sugar from macro command
Before this commit,
```
macro term x:term : term => `($x)
```
would generate the notation
```
syntax "term" term : term
```
2020-12-10 08:09:47 -08:00

14 lines
264 B
Text

--
#check `foo
#check `foo.bla
#check `«foo bla»
#check `«foo bla».«hello world»
#check `«foo bla».boo.«hello world»
#check `foo.«hello»
macro "dummy1" : term => `(`hello)
macro "dummy2" : term => `(`hello.«world !!!»)
#check dummy1
#check dummy2