Retro68/gcc/gcc/testsuite/gfortran.dg/coarray_29_1.f90
2015-08-28 17:33:40 +02:00

14 lines
234 B
Fortran

! { dg-do compile }
! { dg-options "-fcoarray=single" }
! To be used by coarray_29_2.f90
! PR fortran/55272
module co_sum_module
implicit none
contains
subroutine co_sum(scalar)
integer scalar[*]
end subroutine
end module