view test/bug-53956/bug53956_class_4.m @ 33608:5fba13104493 bytecode-interpreter tip

maint: merge default to bytecode-interpreter.
author Nicholas R. Jankowski <jankowski.nicholas@gmail.com>
date Sat, 18 May 2024 22:40:00 -0400
parents 71724787d972
children
line wrap: on
line source

classdef bug53956_class_4 < bug53956_class_3
  properties
  end
  methods
    function delete (self)
      global dtor4_called
      dtor4_called++;
    end
  end
end