2 ! PR31199, test case from PR report.
4 character(len
=20) :: a
,b
,c
5 open(10, status
="scratch")
6 write (10,"(a,t1,a,a)") "xxxxxxxxx", "abc", "def"
7 write (10,"(a,t1,a)",advance
='no') "xxxxxxxxx", "abc"
9 write (10,"(a)") "abcdefxxx"
15 if (a
.ne
.b
) call abort()
16 IF (b
.ne
.c
) call abort()