view test/classdef/class_bug52614B.m @ 28218:8619dc0d3749

maint: merge stable to default.
author Rik <rik@octave.org>
date Tue, 14 Apr 2020 11:10:14 -0700
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