blob: cfee57b471c2244735c08b0dd918da6ed6ba770b [file] [log] [blame]
! { dg-do run }
! { dg-options "-std=legacy" }
!
! PR38772 r143102 reveals missed error checking on floating point reads.
! Test case contributed by Jack Howarth.
program badread
implicit none
double precision r
character*20 temp
logical ok
temp=' end'
r = 3.14159d0
ok=.true.
read(temp,'(f20.0)',err=8888) r
STOP 1
8888 continue
end