view test/nest/scope0.m @ 17173:bb60b1bb47cf

view.m: Fix args undefined error when calling with two arguments
author Max Brister <max@2bass.com>
date Sat, 03 Aug 2013 17:23:44 -0600
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