view test/bug-52075/class_bug52075.m @ 33608:5fba13104493 bytecode-interpreter tip

maint: merge default to bytecode-interpreter.
author Nicholas R. Jankowski <jankowski.nicholas@gmail.com>
date Sat, 18 May 2024 22:40:00 -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