OSDN Git Service

PR target/35944
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gfortran.dg / all_bounds_1.f90
1 ! { dg-do run }
2 ! { dg-options "-fbounds-check" }
3 ! { dg-shouldfail "Incorrect extent in return value of ALL intrinsic" }
4 program main
5   logical(kind=4), allocatable :: f(:,:)
6   logical(kind=4) :: res(3)
7   character(len=80) line
8   allocate (f(2,2))
9   f = .false.
10   f(1,1) = .true.
11   f(2,1) = .true.
12   res = all(f,dim=1)
13   write(line,fmt='(80L1)') res
14 end program main
15 ! { dg-output "Fortran runtime error: Incorrect extent in return value of ALL intrinsic in dimension 1: is 3, should be 2" }
16
17