view test/bug-50014/duplicate_nested_in_subfunction_ok.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 that duplicate names in separate subfunctions are OK.

function retval = duplicate_nested_in_subfunction_ok ()
  retval = sub1 () + sub2 ();
endfunction

function r = sub1 ()
  function notbug ()
    r = 1;
  endfunction
  notbug ();
endfunction

function r = sub2 ()
  function notbug ()
    r = 2;
  endfunction
  notbug ();
endfunction