]> gcc.gnu.org Git - gcc.git/blob - gcc/testsuite/gfortran.dg/coarray_13.f90
2010-04-30 Tobias Burnus Mburnus@net-b.de>
[gcc.git] / gcc / testsuite / gfortran.dg / coarray_13.f90
1 ! { dg-do run }
2 ! { dg-options "-fcoarray=single" }
3 !
4 ! Coarray support -- allocatable array coarrays
5 ! PR fortran/18918
6 ! PR fortran/43931
7 !
8 program test
9 implicit none
10 call one()
11 contains
12 subroutine one()
13 integer, allocatable :: a(:)[:,:,:]
14 allocate(a(1)[-4:9,8,4:*])
15 end subroutine one
16 subroutine four(C)
17 integer, allocatable :: C(:)[:]
18 end subroutine four
19 end program test
This page took 0.036796 seconds and 5 git commands to generate.