view test/bug-59704/bug59704_1.m @ 31201:a8b0acc018a2

maint: merge stable to default
author Rik <rik@octave.org>
date Wed, 24 Aug 2022 08:55:39 -0700
parents 09f99fe5190c
children
line wrap: on
line source

classdef bug59704_1 < handle

  properties
    p
  endproperties

  methods

    function n = numel (this, varargin)
      n = 1;
    endfunction

    function test (this)
      [~, this.p] = bug59704_1_test (this.p);
    endfunction

  endmethods

endclassdef