aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gfortran.dg/backslash_2.f90
blob: 2f954d539495f483038be1be942aeefc4f73199f (plain)
1
2
3
4
5
6
7
8
9
10
11
! { dg-do run }
! { 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