view gcc/testsuite/gfortran.dg/coarray_21.f90 @ 144:8f4e72ab4e11

fix segmentation fault caused by nothing next cur_op to end
author Takahiro SHIMIZU <anatofuz@cr.ie.u-ryukyu.ac.jp>
date Sun, 23 Dec 2018 21:23:56 +0900
parents 04ced10e8804
children
line wrap: on
line source

! { 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