view test/bug-53956/bug53956_class_4.m @ 31235:b542b88ad3b6

maint: Use space between function name and '(' in sparse-xpow.cc. * sparse-xpow.cc: Use space between function name and '(' in sparse-xpow.cc.
author Rik <rik@octave.org>
date Tue, 20 Sep 2022 14:43:56 -0700
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