summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/coarray_44.f90
blob: 545b5462251edcf883dab5a072715890527ba025 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
! { dg-do compile }
! { dg-options "-fcoarray=single" }
!
! PR fortran/70071
! Based on testcases by Gerhard Steinmetz

program pr70071
  implicit none
  integer, allocatable :: z(:)[:,:]
  allocate (z(2)[1::2,*])  ! { dg-error "Bad array dimension" }
  allocate (z(1::2)[2,*])  ! { dg-error "Bad array specification in ALLOCATE" }
end program pr70071

! { dg-prune-output "Bad coarray specification in ALLOCATE statement" }