view test/bug-52075/class_bug52075.m @ 31231:a026fb2be108

sparse-xpow.cc: Return empty matrix for empty input (bug #63080)
author Arun Giridhar <arungiridhar@gmail.com>
date Mon, 19 Sep 2022 07:05:31 -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