16 lines
194 B
Text
16 lines
194 B
Text
|
variable (A : Type)
|
||
|
|
||
|
structure foo (a : A) :=
|
||
|
(eqpr : a = a)
|
||
|
|
||
|
context
|
||
|
parameter (B : Type)
|
||
|
|
||
|
structure foo2 (b : B) :=
|
||
|
(eqpr : b = b)
|
||
|
|
||
|
check foo2
|
||
|
|
||
|
definition tst : B → Type₁ := foo2
|
||
|
end
|