classdef bug60143_value properties t u end methods function set.t(this, val) this.t = val; end function [this, a] = set.u(this, val) this.u = val; disp('method set.u'); a = 1; end end end