view test/nest/scope3.m @ 20594:a05a0432dff4

eliminate more simple uses of error_state * data.cc: Eliminate simple uses of error_state.
author John W. Eaton <jwe@octave.org>
date Mon, 05 Oct 2015 23:42:49 -0400
parents be18c9e359bf
children
line wrap: on
line source

# scope3.m
function scope3
  C;
  function A
    B;
    function B
      E;
    endfunction
    function E
    endfunction
  endfunction

  function C
    D;
    function D
      A;
    endfunction
  endfunction
endfunction