lean4-htt/tests/lean/run/class11.lean
2016-09-08 14:02:23 -07:00

6 lines
185 B
Text

inductive [class] C {A : Type} : A → Prop
constant f {A : Type} (a : A) [H : C a] : Prop
noncomputable definition g {A : Type} (a b : A) {H1 : C a} {H2 : C b} : Prop :=
f a ∧ f b