original.name="Template_Valid_42" ====== >>> main.whiley type Point is {int x, int y} type Message is { T t, S s } public export method test(): Point p = {x:1,y:2} Message h = { t:1, s:p } assert h.t == 1 assert h.s.x == 1 && h.s.y == 2 ---