view test/bug-44940/bug-44940.tst @ 23083:e9a0469dedd9 stable

maint: strip extra trailing newlines from files.
author John W. Eaton <jwe@octave.org>
date Fri, 20 Jan 2017 12:19:08 -0500
parents ecce63c99c3f
children ef4d915df748
line wrap: on
line source

%!test
%! a = class_bug44940 ();
%! b = a;
%! c = a ();
%! a.child = 100;
%! assert (a.child, b.child);
%! assert (a.child, c.child);
%! c.child = 500;
%! assert (a.child, b.child);
%! assert (a.child, c.child);