view test/classdef/class_bug52614B.m @ 31090:1779a64b2510

maint: Merge stable to default
author Arun Giridhar <arungiridhar@gmail.com>
date Fri, 10 Jun 2022 18:57:17 -0400
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