Dead
[official-gcc.git] / gomp-20050608-branch / gcc / testsuite / gfortran.dg / iostat_3.f90
blob1dc72d149c4fb35ffe8848a4fa0afde3df34b908
1 ! { dg-do compile }
2 ! Testcase for PR libfortran/25068
3 real :: u
4 integer(kind=8) :: i
5 open (10,status="scratch")
6 read (10,*,iostat=i) u ! { dg-warning "Fortran 95 requires default INTEGER in IOSTAT tag" }
7 close (10,iostat=i) ! { dg-warning "Fortran 95 requires default INTEGER in IOSTAT tag" }
8 end