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

7 lines
151 B
Text

structure point (A : Type) (B : Type) :=
mk :: (x : A) (y : B)
structure point2 (A : Type) (B : Type) extends point A B :=
make
#print prefix point2