2015-02-23 15:28:43 -08:00
|
|
|
variable (A : Type)
|
|
|
|
|
|
|
|
structure foo (a : A) :=
|
|
|
|
(eqpr : a = a)
|
|
|
|
|
2015-04-21 19:33:21 -07:00
|
|
|
section
|
2015-02-23 15:28:43 -08:00
|
|
|
parameter (B : Type)
|
|
|
|
|
|
|
|
structure foo2 (b : B) :=
|
|
|
|
(eqpr : b = b)
|
|
|
|
|
|
|
|
check foo2
|
|
|
|
|
|
|
|
definition tst : B → Type₁ := foo2
|
|
|
|
end
|