view test/nest/scope0.m @ 31201:a8b0acc018a2

maint: merge stable to default
author Rik <rik@octave.org>
date Wed, 24 Aug 2022 08:55:39 -0700
parents fc4bb4bd1d5e
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