view test/bug-47680/super_bug47680.m @ 31218:a33a9c87220b stable

imformats.m: Fix "isa" function in return value (bug #62974) * imformats.m (isa_magick): Fix typo "Format" to "format" for name of field in struct returned from __magick_ping__.
author Rik <rik@octave.org>
date Tue, 30 Aug 2022 15:24:29 -0700
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