rt_gccstream/gcc/testsuite/gfortran.dg/iostat_2.f90

9 lines
247 B
Fortran

! PR libfortran/23784
! { dg-do run }
integer i
close(10, status="whatever", iostat=i) ! { dg-warning "STATUS specifier in CLOSE statement.*has invalid value" }
if (i == 0) call abort()
write(17,*) 'foo'
close(17, status="delete")
end