PR inline-asm/84742
[official-gcc.git] / gcc / testsuite / gfortran.dg / maxloc_bounds_1.f90
bloba107db2017a4817f1216855d11bac194afeaca2a
1 ! { dg-do run }
2 ! { dg-options "-fbounds-check" }
3 ! { dg-shouldfail "Incorrect extent in return value of MAXLOC intrinsic in dimension 1: is 3, should be 2" }
4 program main
5 integer(kind=4), allocatable :: f(:,:)
6 integer(kind=4) :: res(3)
7 character(len=80) line
8 allocate (f(2,2))
9 f = 3
10 res = maxloc(f,dim=1)
11 write(line,fmt='(80I1)') res
12 end program main
13 ! { dg-output "Fortran runtime error: Incorrect extent in return value of MAXLOC intrinsic in dimension 1: is 3, should be 2" }