lean4-htt/tests/lean/run/def_alias.lean
2016-09-20 08:32:37 -07:00

10 lines
121 B
Text

attribute [reducible]
definition N := nat
definition f : N → nat
| 0 := 1
| (n+1) := n
example : f 0 = 1 :=
rfl