view test/bug-55758/class_bug_55758.m @ 31218:a33a9c87220b stable

imformats.m: Fix "isa" function in return value (bug #62974) * imformats.m (isa_magick): Fix typo "Format" to "format" for name of field in struct returned from __magick_ping__.
author Rik <rik@octave.org>
date Tue, 30 Aug 2022 15:24:29 -0700
parents ab9520ef3895
children
line wrap: on
line source

classdef class_bug_55758 < handle
  properties
    value
  endproperties

  methods
    function self = class_bug_55758 (val)
      if (nargin < 1)
        val = 0;
      endif
      self.value = val;
    endfunction

    function delete (self)
      global class_bug_55758_dtor_called;
      class_bug_55758_dtor_called = true;
    endfunction

    function ret = subsref (self, idx)
      ret = self.value;
    endfunction
  endmethods
endclassdef