view test/nest/arg_nest.m @ 20103:065f933ef083 rc-4-0-0-3

maint: Bump version number for 4.0.0-rc3
author John W. Eaton <jwe@octave.org>
date Fri, 10 Apr 2015 14:41:12 -0400
parents be18c9e359bf
children
line wrap: on
line source

# arg_nest.m
function x = arg_nest
  x = 1;
  A (x);
  function A (x)
    x = 2;
  endfunction
endfunction