view test/bug-51534/parent_bug51534.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 ff893e26aeeb
children
line wrap: on
line source

classdef parent_bug51534 < handle
  properties
    prop
  endproperties
  methods
    function self = parent_bug51534 (val)
      self.prop = val;
    endfunction
  endmethods
endclassdef