view test/bug-53956/bug53956_class_2.m @ 31206:7ae0a0772e9d

maint: merge stable to default
author Arun Giridhar <arungiridhar@gmail.com>
date Sun, 28 Aug 2022 12:21:36 -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