view test/bug-53956/bug53956_class_2.m @ 31544:8459f7f21679

maint: Merge stable to default
author Arun Giridhar <arungiridhar@gmail.com>
date Fri, 25 Nov 2022 11:32:48 -0500
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