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

17 lines
335 B
Text

import logic
set_option structure.eta_thm true
structure point (A : Type) (B : Type) :=
mk :: (x : A) (y : B)
check point.eta
example (p : point num num) : point.mk (point.x p) (point.y p) = p :=
point.eta p
inductive color :=
red | green | blue
structure color_point (A : Type) (B : Type) extends point A B :=
mk :: (c : color)