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