modula2: Simplify REAL/LONGREAL/SHORTREAL node creation.
[official-gcc.git] / gcc / testsuite / gfortran.dg / all_bounds_1.f90
blobd8cb07bf0c6124ad70958873cdaf5ea973ef7e64
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" }