summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/backslash_2.f90
blob: dc4714f32e86a20b03ad9bbb5f6845f71e1251ab (plain)
1
2
3
4
5
6
7
8
9
10
11
! { dg-do run { target fd_truncate } }
! { dg-options "-fbackslash" }
      integer :: i, e
      open (10, status='scratch')
      write (10,'(A)') '1\n2'
      rewind (10)
      read (10,*,iostat=e) i
      if (e /= 0 .or. i /= 1) call abort
      read (10,*,iostat=e) i
      if (e /= 0 .or. i /= 2) call abort
      end