view test/classdef/class_bug52614B.m @ 31060:7201d9b7cea6 stable

NEWS.7.md: Fix typo and formatting.
author Markus Mützel <markus.muetzel@gmx.de>
date Thu, 02 Jun 2022 19:52:08 +0200
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