view test/nest/scope2.m @ 20530:8c4317b8f7c5 stable

ellipke.m: Use correct definition of elliptic integral in documentation (bug #45522). * ellipke.m: Replace 'm^2' with just 'm' in definitions of elliptic integrals.
author Rik <rik@octave.org>
date Fri, 10 Jul 2015 11:55:14 -0700
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