1! { dg-do run }
2! { dg-options "-fbounds-check" }
3! { dg-shouldfail "Incorrect extent in return value of ALL intrinsic" }
4program 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
14end 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
18