view test/bug-53956/bug53956_class_2.m @ 33596:96a203bc7e17 bytecode-interpreter tip

maint: Merge default to bytecode-interpreter
author Nicholas R. Jankowski <jankowski.nicholas@gmail.com>
date Fri, 17 May 2024 22:49:58 -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