view test/bug-47680/super_bug47680.m @ 31246:43a6be589387

doc: New documentation for memoization techniques (bug #60860) vectorize.texi: New section on memoization octave.texi: List new section
author Arun Giridhar <arungiridhar@gmail.com>
date Thu, 29 Sep 2022 20:31:52 -0400
parents b73a54c31152
children
line wrap: on
line source

classdef super_bug47680
  properties
    tag;
  endproperties
  methods
    function obj = super_bug47680 (x)
      obj.tag = x;
    endfunction
    function r = meth1 (obj, x)
      r = [obj.tag ":super:meth1:" x];
    endfunction
    function r = meth2 (obj, x)
      r = [obj.tag ":super:meth2:" x];
    endfunction
    function r = meth3 (obj, x)
      r = [obj.tag ":super:meth3:" x];
    endfunction
    function r = meth4 (obj, x)
      r = [obj.tag ":super:meth4:" x];
    endfunction
  endmethods
endclassdef