Update ChangeLog and version files for release
[official-gcc.git] / gcc / testsuite / gfortran.dg / write_check4.f90
blobf418ba8fbf0c9b1d9a6326b7634bf8839b7f6c43
1 ! { dg-do compile }
3 ! PR fortran/35840
5 ! The asynchronous specifier for a data transfer statement shall be
6 ! an initialization expression
8 ! Contributed by Tobias Burnus <burnus@gcc.gnu.org>
10 character(2) :: no
11 no = "no"
12 open (unit=10, asynchronous = no) ! Ok, it isn't a transfer stmt
13 write(*,*, asynchronous="Y"//"E"//trim("S ")) ! Ok, it is an init expr
14 write(*,*, asynchronous=no) ! { dg-error "must be an initialization expression" }
15 read (*,*, asynchronous="Y"//"e"//trim("S "))
16 read (*,*, asynchronous=no) ! { dg-error "must be an initialization expression" }
17 end