view test/nest/scope2.m @ 18232:3cad99b56fa7

maint: Periodic merge of gui-release to default.
author John W. Eaton <jwe@octave.org>
date Tue, 07 Jan 2014 13:20:28 -0500
parents be18c9e359bf
children
line wrap: on
line source

# scope2.m
function scope2
  C;
  function A
    B;
    function B
      D;
    endfunction
  endfunction

  function C
    D;
    function D
      A;
    endfunction
  endfunction
endfunction