view test/bug-50014/duplicate_subfunction.m @ 31227:0dec459a4064

sparse-xpow.cc: Performance tweak for threshold selection
author Arun Giridhar <arungiridhar@gmail.com>
date Wed, 14 Sep 2022 09:59:31 -0400
parents 28668bfd5b63
children
line wrap: on
line source

## Test duplicate subfunctions
function x = duplicate_subfunction ()
  x = 1;
endfunction

function y = duplicate_subfcn_1 ()
  y = 2;
endfunction

function z = duplicate_subfcn_1 ()
  z = 3;
endfunction