classdef clC properties aObj; end methods function this = clC this.aObj = clB; end function y = getPropFromC (this) y = this.aObj.prop; end end end