view test/bug-47680/super_bug47680.m @ 31197:8d4c87e88d0e

maint: Merge stable to default.
author Markus Mützel <markus.muetzel@gmx.de>
date Tue, 23 Aug 2022 19:45:19 +0200
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