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

22 lines
273 B
Text

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