view test/bug-50014/duplicate_primary_subfunction.m @ 31173:0abc9779f751

Tiff: modified readRGBAImage to use the orientation tag correctly * __tiff__.cc (F__tiff_read_rgba_image__): modified the way the image is read to use the orientation tag in the correct way.
author magedrifaat <magedrifaat@gmail.com>
date Tue, 16 Aug 2022 16:10:10 +0200
parents 12956e50e508
children
line wrap: on
line source

## Test duplicate primary/subfunction name
function r = duplicate_primary_subfunction ()
  r = 1;
endfunction

function r = duplicate_primary_subfunction ()
  r = 2;
endfunction