view test/bug-52075/class_bug52075.m @ 31170:06c76eca5f95 default tip @

maint: merge stable to default
author John W. Eaton <jwe@octave.org>
date Fri, 29 Jul 2022 12:02:42 -0400
parents f8b8a8e6bd79
children
line wrap: on
line source

classdef class_bug52075
  methods
    function ret = duplicate (self)
      ret = 'method';
    end
    function ret = call_local_dup (self)
      ret = duplicate ();
    end
  end
end

function ret = duplicate
  ret = 'local_foo';
end