blob: 69f5866d0e724b1a6f52d5b1b634878f1a8b0b20 [file] [log] [blame]
! { dg-do compile }
! Tests the implementation of compile-time shape testing, required to fix
! PR19015. The functionality of maxloc and friends is tested by existing
! testcases.
!
! Contributed by Thomas Koeing <Thomas.Koenig@online.de>
!
integer, dimension(0:1,0:1) :: n
integer, dimension(1) :: i
n = reshape((/1, 2, 3, 4/), shape(n))
i = maxloc(n) ! { dg-error "different shape for Array assignment" }
i = maxloc(n,dim=1) ! { dg-error "different shape for Array assignment" }
! print *,i
end program