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

20 lines
265 B
Text

set_option pp.universes true
section
parameter (A : Type)
section
parameter (B : Type)
structure point :=
mk :: (x : A) (y : B)
#check point
#check point.mk
#check point.x
end
#check point
#check point.mk
#check point.x
end