lean2/tests/lean/run/class11.lean
2014-10-02 17:55:34 -07:00

9 lines
184 B
Text

import logic
constant C {A : Type} : A → Prop
class C
constant f {A : Type} (a : A) {H : C a} : Prop
definition g {A : Type} (a b : A) {H1 : C a} {H2 : C b} : Prop :=
f a ∧ f b