view test/nest/scope1.m @ 33589:f07a7fe7bd51 default tip @

maint: merge stable to default
author Rik <rik@octave.org>
date Thu, 16 May 2024 08:32:01 -0700
parents fc4bb4bd1d5e
children
line wrap: on
line source

## scope1.m
function scope1 (n)
  value = n;
  if (value)
    C;
  end
  function A
    B;
    function B
      scope1 (0);
    endfunction
  endfunction

  function C
    D;
    function D
      A;
    endfunction
  endfunction
endfunction