original.name="Lambda_Valid_34" ====== >>> main.whiley public type Action is method(S)->(Action[]) public function alert() -> Action: return &(S st -> apply_alert()) method apply_alert() -> Action[]: return [] public export method test(): Action action = alert() Action[] result = action(0) assume |result| == 0 ---