lean2/tests/lean/errors2.lean

13 lines
117 B
Text
Raw Normal View History

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