[Fortran] OpenACC – permit common blocks in some clauses
[official-gcc.git] / gcc / testsuite / gfortran.dg / scratch_1.f90
blob1547bfe8c5bdd818e8cd15e6c3dad0dd2b3cc605
1 ! { dg-do run }
2 ! Check that we can open more than 26 scratch files concurrently
3 integer :: i
4 do i = 1, 30
5 print *, i
6 open(100+i,status="scratch")
7 end do
8 end