view test/bug-50014/duplicate_parent_nested_function.m @ 31226:44cf6bbeeca9

sparse-xpow.cc: Change return type from int to bool for internal function
author Arun Giridhar <arungiridhar@gmail.com>
date Mon, 12 Sep 2022 05:35:48 -0400
parents 0c99b8c2e5bb
children
line wrap: on
line source

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