re PR fortran/78741 (ICE in gfc_get_symbol_decl, at fortran/trans-decl.c:1534)
[official-gcc.git] / gcc / testsuite / gfortran.dg / coarray_allocate_2.f08
blobf0ec6ffe7988c56e9c0ed206880facfca7dfbed0
1 ! { dg-do run }
2 ! { dg-options "-fcoarray=single" }
4 ! Contributed by Ian Harvey  <ian_harvey@bigpond.com>
5 ! Extended by Andre Vehreschild  <vehre@gcc.gnu.org>
6 ! to test that coarray references in allocate work now
7 ! PR fortran/67451
9   program main
10     implicit none
11     type foo
12       integer :: bar = 99
13     end type
14     class(foo), allocatable :: foobar[:]
15     class(foo), allocatable :: some_local_object
16     allocate(foobar[*])
18     allocate(some_local_object, source=foobar)
20     if (.not. allocated(foobar)) STOP 1
21     if (.not. allocated(some_local_object)) STOP 2
23     deallocate(some_local_object)
24     deallocate(foobar)
25   end program