2010-11-11 Jakub Jelinek <jakub@redhat.com>
[official-gcc.git] / gcc / testsuite / gfortran.dg / arrayio_5.f90
blobcb062037a4a81afd130558336297d358823c58fd
1 ! { dg-do run }
2 ! PR 21875 : Test formatted input/output to/from character arrays.
3 ! This test checks the error checking for end of file condition.
4 ! Contributed by Jerry DeLisle <jvdelisle@verizon.net>.
5 program arrayio_5
6 implicit none
7 integer :: i,ierr
8 character(12) :: r(10) = '0123456789AB'
10 write(r,'(i12)',iostat=ierr) 1,2,3,4,5,6,7,8,9,10,11
11 if (ierr.ne.-1) call abort()
12 end program arrayio_5