lean4-htt/tests/lean/run/ind_whnf2.lean
2021-10-25 13:08:43 -07:00

13 lines
218 B
Text
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

def Set (α : Type u) : Type u := α → id Prop
mutual
inductive Even : id (Set Nat)
| zero : Even 0
| succ : Odd n → Even n
inductive Odd : Set Nat
| succ : Even n → Odd n
end
#print Even
#print Odd