chore(tests/lean/ll_infer_type_bug): fix partial file manually

This commit is contained in:
Sebastian Ullrich 2019-08-09 11:10:33 +02:00
parent 3ed67138d5
commit 5b296cbb33

View file

@ -1,6 +1,6 @@
def f : List Nat → Bool
| [] := false
| (a::as) := a > 0 && f as
| [] => false
| (a::as) => a > 0 && f as
#check f._main._cstage2