view test/nest/no_closure.m @ 20176:42bb3a776c9f stable rc-4-0-0-4

maint: Bump version number for 4.0.0-rc4.
author John W. Eaton <jwe@octave.org>
date Tue, 28 Apr 2015 12:17:57 -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