4 lines
184 B
Text
4 lines
184 B
Text
{ toA_1 := { toA := { x := 0 }, y := 1 }, z := 2 } : B
|
|
{ toC := { x := 0, y := 1 }, z := 2 } : D
|
|
@[reducible] def D.toC_1 : D → Boo.C :=
|
|
fun self => { x := self.toC.x, z := self.z }
|