OSDN Git Service

2008-02-21 Richard Guenther <rguenther@suse.de>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gfortran.dg / fmt_t_1.f90
1 ! { dg-do run }
2       integer nrow, vec(15)
3       open (10, status="scratch")
4       write (10, fmt='(a)') '001    1 2 3 4 5 6'
5       write (10, fmt='(a)') '000000 7 8 9101112'
6       write (10, fmt='(a)') '000000131415'
7       rewind (10)
8       read (10, fmt='(i6, (t7, 6i2))') nrow, (vec(i), i=1,15)
9       close (10)
10       if (nrow.ne.1) call abort
11       if (any (vec.ne.(/1,2,3,4,5,6,7,8,9,10,11,12,13,14,15/))) call abort
12       end