view test/nest/arg_nest.m @ 20613:647db46ad754

eliminate more simple uses of error_state * audioread.cc: Eliminate simple uses of error_state.
author John W. Eaton <jwe@octave.org>
date Thu, 08 Oct 2015 17:41:21 -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