original.name="Template_Valid_37" ====== >>> main.whiley // from std::vector public type Vector is { T[] items, int length } where 0 <= length && length <= |items| public function Vector() -> Vector: return { items: [], length: 0 } // from #912 type State is { Vector stack } function State() -> State: return { stack: Vector() } public export method test(): // Simple check assume State().stack == { items: [], length: 0 } ---