view test/bug-50014/duplicate_nested_parent_function.m @ 31221:f5755dbacd8d

maint: merge stable to default
author Pantxo Diribarne <pantxo.diribarne@gmail.com>
date Wed, 31 Aug 2022 22:04:02 +0200
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