annotate test/bug-65037/bug65037_base.m @ 33658:b1d6e40ac737 stable tip

NEWS.9.md: Fix typo and minor formatting changes. * etc/NEWS.9.md: Fix typo. Adjust whitespace. Use markdown syntax for code snippets.
author Markus Mützel <markus.muetzel@gmx.de>
date Wed, 05 Jun 2024 11:27:35 +0200
parents 833f3d9bdf1a
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
32862
833f3d9bdf1a Don't treat parent class constructor as inherited class method (bug #65037)
John W. Eaton <jwe@octave.org>
parents:
diff changeset
1 classdef bug65037_base
833f3d9bdf1a Don't treat parent class constructor as inherited class method (bug #65037)
John W. Eaton <jwe@octave.org>
parents:
diff changeset
2 properties
833f3d9bdf1a Don't treat parent class constructor as inherited class method (bug #65037)
John W. Eaton <jwe@octave.org>
parents:
diff changeset
3 ctor_nargin;
833f3d9bdf1a Don't treat parent class constructor as inherited class method (bug #65037)
John W. Eaton <jwe@octave.org>
parents:
diff changeset
4 end
833f3d9bdf1a Don't treat parent class constructor as inherited class method (bug #65037)
John W. Eaton <jwe@octave.org>
parents:
diff changeset
5 methods
833f3d9bdf1a Don't treat parent class constructor as inherited class method (bug #65037)
John W. Eaton <jwe@octave.org>
parents:
diff changeset
6 function obj = bug65037_base (varargin)
833f3d9bdf1a Don't treat parent class constructor as inherited class method (bug #65037)
John W. Eaton <jwe@octave.org>
parents:
diff changeset
7 obj.ctor_nargin = nargin;
833f3d9bdf1a Don't treat parent class constructor as inherited class method (bug #65037)
John W. Eaton <jwe@octave.org>
parents:
diff changeset
8 end
833f3d9bdf1a Don't treat parent class constructor as inherited class method (bug #65037)
John W. Eaton <jwe@octave.org>
parents:
diff changeset
9 end
833f3d9bdf1a Don't treat parent class constructor as inherited class method (bug #65037)
John W. Eaton <jwe@octave.org>
parents:
diff changeset
10 end