re PR libfortran/47439 (Fun with scratch files on Windows MKTEMP only allows for...
[official-gcc.git] / gcc / testsuite / gfortran.dg / scratch_1.f90
blob32bf0c45a1dd0bdaf57bb546b47052d9c22dd582
1 ! { dg-do run }
2 ! Check that we can open more than 26 scratch files concurrently
3 integer :: i
4 do i = 1, 3000
5 print *, i
6 open(100+i,status="scratch")
7 end do
8 end