view test/bug-51534/child_bug51534.m @ 31192:7401a2501be4

maint: merge stable to default
author Rik <rik@octave.org>
date Mon, 15 Aug 2022 21:06:21 -0700
parents ff893e26aeeb
children
line wrap: on
line source

classdef child_bug51534 < parent_bug51534
  methods
    function self = child_bug51534 (val)
      self@parent_bug51534 (val);
    endfunction
  endmethods
endclassdef