PR inline-asm/84742
[official-gcc.git] / gcc / testsuite / gfortran.dg / arrayio_8.f90
blobc2fcbbf6995a606cae0b769c6b84081c8e243bec
1 ! { dg-do run }
2 ! { dg-options "-std=legacy" }
4 ! PR28339, This test checks that internal unit array I/O handles a full record
5 ! and advances to the next record properly. Test case derived from PR
6 ! Submitted by Jerry DeLisle <jvdelisle@gcc.gnu.org>
7 program main
8 integer i
9 character*8 rec(3)
10 rec = ""
11 write (rec,fmt=99999)
12 if (rec(1).ne.'12345678') STOP 1
13 if (rec(2).ne.'record2') STOP 2
14 if (rec(3).ne.'record3') STOP 3
15 99999 format ('12345678',/'record2',/'record3')
16 end