view test/bug-51534/parent_bug51534.m @ 33589:f07a7fe7bd51 default tip @

maint: merge stable to default
author Rik <rik@octave.org>
date Thu, 16 May 2024 08:32:01 -0700
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