view test/bug-50014/duplicate_nested_parent_function.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 0c99b8c2e5bb
children
line wrap: on
line source

## Test nested function that duplicates nested function name
function duplicate_nested_parent_function ()
  function bug ()
    function bug ()
    endfunction
  endfunction
endfunction