view test/nest/arg_ret.m @ 31597:65157e496f5d

maint: Merge stable to default.
author Arun Giridhar <arungiridhar@gmail.com>
date Wed, 30 Nov 2022 08:03:06 -0500
parents be18c9e359bf
children
line wrap: on
line source

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