aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gfortran.dg/arrayio_10.f90
blob: 2be99ec727d44d2b46a8d94f1740dfd352ac7c05 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
! { dg-do run }
! PR29563 Internal read loses data.
! Test case submitted by Jerry DeLisle  <jvdelisle@gcc.gnu.org>
! Without patch, values get muddled.
program pr29563
  character(len=4), dimension(3)::arraydata = (/'1123',' 456','789 '/)
  real(kind=8), dimension(3) :: tmp
  read(arraydata,*,iostat=iostat)tmp
  if (tmp(1).ne.1123.0) call abort()
  if (tmp(2).ne.456.0) call abort()
  if (tmp(3).ne.789.0) call abort()
end program pr29563