view test/bug-50014/duplicate_nested_function.m @ 31591:d3ddf7be0235 stable

maint: Update RELEASE_CHECKLIST.md. * RELEASE_CHECKLIST.md: Remove task to update EDITION number in octave.texi (now automated). Add instructions for running clang static analyzer.
author Rik <rik@octave.org>
date Tue, 29 Nov 2022 13:15:07 -0800
parents 28668bfd5b63
children
line wrap: on
line source

## Test duplicate nested function names
function duplicate_nested_function ()

  function r = nested_fcn_1 ()
    r = 1;
  endfunction

  function r = nested_fcn_1 ()
    r = 2;
  endfunction

endfunction