You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Set Primitive Projections.
SetImplicitArguments.
SetUniverse Polymorphism.
Set Asymmetric Patterns.
Inductive sum A B := inl : A -> sum A B | inr : B -> sum A B.
Inductive Empty :=.
Record category :=
{ ob :> Type;
hom : ob -> ob -> Type
}.
SetPrintingAll.
Definition sum_category (C D : category) : category :=
{|
ob := sum (ob C) (ob D);
hom x y := match x, y with
| inl x, inl y => @hom _ x y (* Toplevel input, characters 177-178:Error:In environmentC : categoryD : categoryx : sum (ob C) (ob D)y : sum (ob C) (ob D)x0 : ob Cy0 : ob CThe term "x0" has type "ob C" while it is expected to have type"ob ?6" (unable to find a well-typed instantiation for"?6": cannot unify"Type" and "category"). *)
| inr x, inr y => @hom _ x y
| _, _ => Empty
end |}.
The text was updated successfully, but these errors were encountered:
The text was updated successfully, but these errors were encountered: