view test/nest/scope0.m @ 20176:42bb3a776c9f stable rc-4-0-0-4

maint: Bump version number for 4.0.0-rc4.
author John W. Eaton <jwe@octave.org>
date Tue, 28 Apr 2015 12:17:57 -0400
parents be18c9e359bf
children
line wrap: on
line source

# scope0.m
function scope0
  C;
  function A
    B;
    function B
    endfunction
  endfunction

  function C
    D;
    function D
      A;
    endfunction
  endfunction
endfunction