coarray_41.f90: Add "-latomic" option if libatomic_available.
[official-gcc.git] / gcc / testsuite / gfortran.dg / coarray / alloc_comp_2.f90
blob13c823e7474955313719d069970ff13acea09091
1 ! { dg-do compile }
3 ! PR fortran/56929
5 ! Contributed by Damian Rouson
7 ! Allocatable scalar corrays were mishandled (ICE)
9 module parent_coarray_component
10 type parent
11 real, allocatable :: dummy[:]
12 end type
13 type, extends(parent) :: child
14 end type
15 contains
16 subroutine do_something(this)
17 class(child) this
18 end
19 end