original.name="Tuple_Valid_7" ====== >>> main.whiley type handler_t is method(T) method apply(T k, handler_t h): h(k) method zero(&int p): *p = 0 public export method test(): &int p = new 1 assert *p == 1 apply(p,&zero) assume *p == 0 ---