lean4-htt/tests/lean/run/record7.lean
2016-07-07 07:39:26 -07:00

9 lines
164 B
Text

import logic
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