lean4-htt/tests/lean/995.lean
2022-02-04 07:55:56 -08:00

10 lines
184 B
Text

example : ∀(x : Nat){h : x = x}, Nat := by
intro x
match x with
| 0 => _
| n + 1 => _
example (x : Nat) : ∀{h : x = x}, Nat := by
match x with
| 0 => _
| n + 1 => _