aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gfortran.dg/endfile_3.f90
blob: 3e90dda61414ad1c31820b5330a882fc0a41f178 (plain)
1
2
3
4
5
6
7
8
9
! { dg-do run { target fd_truncate } }
! pr44477 READ/WRITE not allowed after ENDFILE 
!-------------------------------------------
  open(10, form='formatted', &
    action='write', position='rewind', status="scratch")
  endfile(10)
  write(10,'(a)') "aa" ! { dg-shouldfail "Cannot perform ENDFILE" }
end