* tree-loop-distribution.c (struct partition): New field recording
[official-gcc.git] / gcc / testsuite / gfortran.dg / fmt_exhaust.f90
blobbd9c8bcfb3f9a4c11d686c821dbb623da6463252
1 ! { dg-do run }
2 ! PR27304 Test running out of data descriptors with data remaining.
3 ! Derived from case in PR. Submitted by Jerry DeLisle <jvdelisle@gcc.gnu.org>.
4 program test
5 implicit none
6 integer :: n
7 n = 1
8 open(10, status="scratch")
9 write(10,"(i7,(' abcd'))", err=10) n, n
10 call abort()
11 10 close(10)
12 end program test