view test/bug-53579.tst @ 30229:3b3ec2ea46ef

GitHub-CI: Use recommended msys2/setup-msys2 action. * .github/workflows/make.yaml (windows): GitHub recommends using the msys2/setup-msys2 action for installing MSYS2 on their runners. See e.g. https://github.com/actions/virtual-environments/issues/1572#issuecomment-908941444 Replace the manual installation steps by that action.
author Markus Mützel <markus.muetzel@gmx.de>
date Wed, 06 Oct 2021 19:45:35 +0200
parents 34617dd78f02
children 332a6ccac881
line wrap: on
line source

%!function [raa, rbb, igaa, igbb] = sub1 (aa, bb)
%!  global aa bb
%!  aa = 1;
%!  raa = aa;
%!  rbb = bb;
%!  igaa = isglobal ("aa");
%!  igbb = isglobal ("bb");
%!endfunction

%!test <*53579>
%! global aa bb
%! assert (isglobal ("aa"));
%! assert (isglobal ("bb"));
%! aa = 3;
%! xx = 5;
%! [raa, rbb, igaa, igbb] = sub1 (aa, xx);
%! assert (raa, 1);
%! assert (rbb, []);
%! assert (igaa);
%! assert (igbb);
%! assert (xx, 5);
%! clear -global aa bb;  # cleanup after test