2 ! { dg-options "-fbounds-check" }
3 ! { dg-shouldfail "Incorrect extent in MASK argument of MAXLOC intrinsic in dimension 2: is 3, should be 2" }
5 integer(kind
=4), allocatable
:: f(:,:)
6 logical, allocatable
:: m(:,:)
7 integer(kind
=4) :: res(2)
9 allocate (f(2,2),m(2,3))
12 res
= maxloc(f
,dim
=1,mask
=m
)
13 write(line
,fmt
='(80I1)') res
15 ! { dg-output "Fortran runtime error: Incorrect extent in MASK argument of MAXLOC intrinsic in dimension 2: is 3, should be 2" }