original.name="Lambda_Valid_38" ====== >>> main.whiley public type Action is method(S)->(S[]) method dup(S item) -> S[]: return [item,item] method run(S item): Action action = &(S st -> dup(st)) S[] result = action(item) assume result == [item,item] public export method test(): run(0) ---