lean4-htt/old_tests/tests/lean/run/struct_bug1.lean
2018-04-10 12:56:55 -07:00

15 lines
194 B
Text

variable (A : Type*)
structure foo (a : A) :=
(eqpr : a = a)
section
parameter (B : Type*)
structure foo2 (b : B) :=
(eqpr : b = b)
#check foo2
definition tst : B → Type := foo2
end