Match: Support more form for scalar unsigned SAT_ADD
[official-gcc.git] / gcc / testsuite / gfortran.dg / fmt_t_1.f90
blob07556c0b52dbeb3093544cc4498251a7e657110f
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) STOP 1
11 if (any (vec.ne.(/1,2,3,4,5,6,7,8,9,10,11,12,13,14,15/))) STOP 2
12 end