lean2/tests/lean/run/class11.lean

10 lines
184 B
Text
Raw Normal View History

import logic
variable C {A : Type} : A → Prop
class C
variable 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