OSDN Git Service

PR target/35944
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gfortran.dg / maxloc_bounds_6.f90
1 ! { dg-do run }
2 ! { dg-options "-fbounds-check" }
3 ! { dg-shouldfail "Incorrect extent in MASK argument of MAXLOC intrinsic in dimension 2: is 3, should be 2" }
4 program main
5   integer(kind=4), allocatable :: f(:,:)
6   logical, allocatable :: m(:,:)
7   integer(kind=4) :: res(2)
8   character(len=80) line
9   allocate (f(2,2),m(2,3))
10   f = 3
11   m = .true.
12   res = maxloc(f,mask=m)
13   write(line,fmt='(80I1)') res
14 end program main
15 ! { dg-output "Fortran runtime error: Incorrect extent in MASK argument of MAXLOC intrinsic in dimension 2: is 3, should be 2" }
16 ! { dg-final { cleanup-modules "tst" } }