Reset branch to trunk.
[official-gcc.git] / trunk / gcc / testsuite / gfortran.dg / maxloc_bounds_6.f90
blob3a63418aef35be591f037eda588d673793dba459
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" }