PR fortran/70696
* gfortran.dg/coarray/event_3.f0: Add save attribue to x.
From-SVN: r268327
+2019-01-27 Uroš Bizjak <ubizjak@gmail.com>
+
+ PR fortran/70696
+ * gfortran.dg/coarray/event_3.f0: Add save attribue to x.
+
2019-01-27 Paul Thomas <pault@gcc.gnu.org>
Backport from trunk
! Check PR fortran/70696 is fixed.
program global_event
- use iso_fortran_env , only : event_type
+ use iso_fortran_env, only : event_type
implicit none
- type(event_type) :: x[*]
+ type(event_type), save :: x[*]
call exchange
contains