view test/bug-54490.tst @ 28228:298977286479 stable

legend.m: display actual marker size up to 8 points
author Pantxo Diribarne <pantxo.diribarne@gmail.com>
date Sat, 18 Apr 2020 20:32:21 +0200
parents cc9da21511c1
children 2838bbd84b87
line wrap: on
line source

%!function out = bug54490 ()
%!  global k;
%!  k = 1;
%!  out = 3;
%!endfunction

%!test
%! global k;
%! k = 2;
%! a = [5, 6];
%! a(k) = bug54490 ();
%! assert (a, [5, 3]);
%! k = 2;
%! a = [5, 6];
%! [a(k)] = bug54490 ();
%! assert (a, [5, 3]);
%! clear -global k;  # cleanup after test