lean4-htt/old_tests/tests/lean/errors2.lean
2018-04-10 12:56:55 -07:00

12 lines
117 B
Text

open nat
namespace foo
definition tst1 (a b : nat) : nat :=
match a with
| 0 := 1
| (n+1) := foo
end
end foo