annotate test/fcn-handle/bug51709_a.m @ 30239:120e878f343f

mkdir.m: issue a warning if DIR already exists (bug #61338) * mkdir.m: When nargout==0, check status message and report a warning if "directory exists" message found.
author Rik <rik@octave.org>
date Wed, 13 Oct 2021 08:05:14 -0700
parents 6731d89ef576
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
26960
6731d89ef576 new tests for functions in package directories (bug #51709, bug #55975)
John W. Eaton <jwe@octave.org>
parents:
diff changeset
1 classdef bug51709_a
6731d89ef576 new tests for functions in package directories (bug #51709, bug #55975)
John W. Eaton <jwe@octave.org>
parents:
diff changeset
2 methods (Static)
6731d89ef576 new tests for functions in package directories (bug #51709, bug #55975)
John W. Eaton <jwe@octave.org>
parents:
diff changeset
3 function r = smeth ()
6731d89ef576 new tests for functions in package directories (bug #51709, bug #55975)
John W. Eaton <jwe@octave.org>
parents:
diff changeset
4 r = "top bug51709_a";
6731d89ef576 new tests for functions in package directories (bug #51709, bug #55975)
John W. Eaton <jwe@octave.org>
parents:
diff changeset
5 end
6731d89ef576 new tests for functions in package directories (bug #51709, bug #55975)
John W. Eaton <jwe@octave.org>
parents:
diff changeset
6 end
6731d89ef576 new tests for functions in package directories (bug #51709, bug #55975)
John W. Eaton <jwe@octave.org>
parents:
diff changeset
7 end