lean4-htt/tests
Leonardo de Moura bdb9f4c86e feat: allow raw identifiers to be used where terms are expected
@Kha this commit fix another example of weird error message I have
experienced in the last few days.

The macro
```lean
syntax "case!" ident ":" term "with" term "," term : term
macro_rules
| `(case! $h : $cond with $t, $e) =>
  `((fun $h => cond $h $t $e) $cond)
```
is accepted, but as in `fun` binders, we get a weird error when
trying to elaborate an instance of the macro.
Example:
```lean
check case! h : 0 == 0 with h, not h
```
2020-01-25 14:55:32 -08:00
..
bench feat: file IO using handles 2020-01-12 08:02:48 -08:00
compiler chore: fix tests 2020-01-20 22:26:07 -08:00
elabissues test: pattern confusion example 2019-12-19 13:36:22 -08:00
ir chore(tests): fix do syntax in tests 2019-06-30 13:04:34 +02:00
lean feat: allow raw identifiers to be used where terms are expected 2020-01-25 14:55:32 -08:00
playground test: add termElab attribute test 2020-01-01 14:16:49 -08:00
plugin feat: file IO using handles 2020-01-12 08:02:48 -08:00