lean4-htt/tests/lean/autoImplicitChain.lean
2022-03-05 17:30:15 -08:00

17 lines
238 B
Text

inductive A where
| a
inductive B : A → Type where
| b : B A.a
inductive C : B a → Type where
| c : C B.b
inductive D : C b → Type where
| d : D C.c
def f (d : D c) : Bool :=
true
set_option pp.explicit true
#print f