2017-02-20 Paul Thomas <pault@gcc.gnu.org>
[official-gcc.git] / gcc / testsuite / gfortran.dg / endfile_3.f90
blob3e90dda61414ad1c31820b5330a882fc0a41f178
1 ! { dg-do run { target fd_truncate } }
2 ! pr44477 READ/WRITE not allowed after ENDFILE
3 !-------------------------------------------
4 open(10, form='formatted', &
5 action='write', position='rewind', status="scratch")
6 endfile(10)
7 write(10,'(a)') "aa" ! { dg-shouldfail "Cannot perform ENDFILE" }
8 end