view test/bug-50014/duplicate_nested_in_subfunction_ok.m @ 28207:ab60e78d235c

maint: merge stable to default.
author Rik <rik@octave.org>
date Sat, 11 Apr 2020 16:06:19 -0700
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