view test/bug-53956/bug53956_class_2.m @ 30249:bc22395f60fa

maint: merge stable to default.
author John W. Eaton <jwe@octave.org>
date Fri, 22 Oct 2021 12:05:59 -0400
parents 71724787d972
children
line wrap: on
line source

classdef bug53956_class_2 < handle
  properties
  end
  methods
    function delete (self)
      global dtor2_called
      dtor2_called++;
    end
  end
end