view test/nest/no_closure.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

# no_closure.m
function no_closure (n)
  if n == 0
    x = @no_closure;
  else
    f = @no_closure;
  endif

  function f
  endfunction
endfunction