lean4-htt/tests/lean/1371.lean
2022-07-31 06:00:08 -07:00

6 lines
128 B
Text

def f (stx : Lean.Syntax) :=
match stx with
| `($f $a) => 1
| `($_) => 2
| `($f $b) => 3
| _ => "hello"