view test/classdef/bug_60763.m @ 33614:7f7d6bc5702b default tip @

maint: merge stable to default
author Rik <rik@octave.org>
date Mon, 20 May 2024 09:12:08 -0700
parents ad1491462d13
children
line wrap: on
line source

classdef bug_60763
  properties
    some_property;
  endproperties
  methods
    function p = foobar (instance)
      p = properties (instance);
    endfunction
    function m = methods (instance)
      m = 42;
    endfunction
  endmethods
endclassdef