lean4-htt/tests/lean/run/t11.lean
2017-03-09 18:41:19 -08:00

15 lines
301 B
Text

constant A : Type
constants a b c : A
constant f : A → A → A
#check f a b
section
universe variables u v
parameters A B : Type u
parameters {C D : Type v}
parameters [e : A] [d : A]
#check A
#check B
definition g (a : A) (b : B) (c : C) : A := e
end
#check g.{2 1}
constants x y : A