+2020-04-10 Fritz Reese <foreese@gcc.gnu.org>
+
+ * gfortran.dg/asynchronous_5.f03: Fix typo in testcase and add
+ IMPLICIT NONE.
+
2020-04-10 Fritz Reese <foreese@gcc.gnu.org>
* gfortran.dg/asynchronous_5.f03: Add -fdump-tree-original and fix
! should obtain the "volatile" specifier in its declaration.
!
+implicit none
+
type t
character(4) :: comp_async
end type
namelist /names/ ivar_async, rvar_async, lvar_async
open(1, asynchronous="yes")
-write(1, asynchronous="yes") dvar_async, ccvar_async
+write(1, asynchronous="yes") dvar_async
write(1, asynchronous="yes") dvar_async%comp_async
read(1, asynchronous="yes", nml=names)