aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gfortran.dg/coarray_21.f90
blob: e805cf68a0f09eff24cab1940d915e0c258e01be (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
! { dg-do compile }
! { dg-options "-fcoarray=single" }
!
! PR fortran/18918
!
! Before scalar coarrays weren't regarded as scalar in the ME.
!
module mod_reduction
  real :: g[*]
contains
  subroutine caf_reduce(x)
    real, intent(in) :: x
       g = x  ! << used to ICE
  end
end module

program test
  integer, parameter :: size = 4000
  type :: pct
    integer, allocatable :: data(:,:)
  end type
  type(pct) :: picture[*]
     allocate(picture%data(size, size))
end program test