lean2/tests/lean/run/mor.lean

16 lines
404 B
Text

-- Copyright (c) 2014 Floris van Doorn. All rights reserved.
-- Released under Apache 2.0 license as described in the file LICENSE.
-- Author: Floris van Doorn
import algebra.category.basic
open eq eq.ops category
namespace morphism
section
parameter {ob : Type}
parameter {C : category ob}
variables {a b c d : ob} {h : hom c d} {g : hom b c} {f : hom a b}
check hom a b
end
end morphism