Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / gfortran.dg / iostat_3.f90
blobdb9547b29e01efd0215353963f7f90b7126f0c69
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 2003: Non-default integer kind in IOSTAT tag" }
7 close (10,iostat=i) ! { dg-warning "Fortran 2003: Non-default integer kind in IOSTAT tag" }
8 end