blob: 22b6afdebfeccb255c42307cd7fd0298a8b0428e [file] [log] [blame]
! Check zero sized arrays work correcly
! From PR12704
program intrinsic_mmloc_4
integer, allocatable, dimension(:) :: d
integer, allocatable, dimension(:,:) :: a
integer, dimension(2) :: b
allocate (d(0))
if (maxloc (d, 1) .ne. 0) STOP 1
allocate (a(1, 0))
b = minloc (a)
if (any (b .ne. 0)) STOP 2
end program