view test/nest/scope3.m @ 20650:93d96da9ff3e

Update uiXXXXX documentation for autogenerated properties * scripts/gui/uitoolbar.m: added ref to autogenerated properties * scripts/gui/uicontextmenu.m: added ref to autogenerated properties * scripts/gui/uicontrol.m: added ref to autogenerated properties * scripts/gui/uipanel.m: added ref to autogenerated properties * scripts/gui/uipushtool.m: added ref to autogenerated properties * scripts/gui/uitoggletool.m: added ref to autogenerated properties
author John Donoghue
date Mon, 12 Oct 2015 17:30:44 -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