view test/classdef/class_bug52614B.m @ 31204:a81fad5c9fef

idx_vector: Fix wrong length calculation (bug #62968). * liboctave/array/idx-vector.cc: Fix wrong calculation for m_len in (start, limit, step) constructor to account for incomplete intervals. * liboctave/array/idx-vector.h: Add comment to (start, limit, step) constructor.
author Maged Rifaat <magedrifaat@gmail.com>
date Sat, 27 Aug 2022 13:41:44 +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