view test/classdef/class_bug52614B.m @ 31597:65157e496f5d

maint: Merge stable to default.
author Arun Giridhar <arungiridhar@gmail.com>
date Wed, 30 Nov 2022 08:03:06 -0500
parents 64461ccf3039
children
line wrap: on
line source

classdef class_bug52614B < class_bug52614A
  properties
    b
  end

  methods
    function obj = class_bug52614B ()
      obj = obj@class_bug52614A ();
    end

    function foo (obj)
      foo@class_bug52614A (obj);
      obj.b = 2;
    end
  end
end