view test/nest/arg_ret.m @ 18585:e1b9c8277ada

betainc.cc: Remove obsolete FIXME note. * betainc.cc: Remove obsolete FIXME note to switch betainc from a dldfcn to a regular DEFUN function. This has already happened.
author Rik <rik@octave.org>
date Sat, 22 Feb 2014 08:23:26 -0800
parents be18c9e359bf
children
line wrap: on
line source

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