aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gfortran.dg/eof_5.f90
blob: 88671ba23746f003affba358f1104357f54a2a9e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
! { dg-do run }
!
! PR fortran/56696
!
! Contributed by Keith Refson
!

program iotest
   character(len=258) :: inp = ' 1.0 1.0 1.0'
   character(len=7) :: inp2 = '1 2 3 4'
   integer :: ios
   real :: a1, a2, a3, a4

   read(inp2,*,iostat=ios) a1, a2, a3, a4
   if (ios /= 0) call abort ()

   read(inp,*,iostat=ios) a1, a2, a3, a4
   if (ios == 0) call abort ()
!   write(*,*) 'IOSTAT=',ios
end program iotest