view test/bug-51534/parent_bug51534.m @ 31211:8340137bb190

maint: Merge stable to default.
author Markus Mützel <markus.muetzel@gmx.de>
date Mon, 29 Aug 2022 13:58:00 +0200
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