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