view test/nest/arg_ret.m @ 31217:1469658f769b

maint: Merge stable to default.
author Markus Mützel <markus.muetzel@gmx.de>
date Tue, 30 Aug 2022 18:27:00 +0200
parents be18c9e359bf
children
line wrap: on
line source

function a = arg_ret
  a = 10;
  f;
  function a = f
    a = 5;
  endfunction
endfunction