OSDN Git Service

* lib/gcc-dg.exp (cleanup-modules): New proc.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gfortran.dg / iostat_3.f90
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