view test/bug-53956/bug53956_class_2.m @ 31221:f5755dbacd8d

maint: merge stable to default
author Pantxo Diribarne <pantxo.diribarne@gmail.com>
date Wed, 31 Aug 2022 22:04:02 +0200
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