aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gfortran.dg/t_editing.f
blob: 6121e85845a24bbac99d86ce915bba6d7c433c62 (plain)
1
2
3
4
5
6
7
8
! { dg-do run }     
! PR25349 Check T editing. Test case from PR submitted by Thomas Koenig
! Contributed by Jerry DeLisle <jvdelisle@gcc.gnu.org>
      program main
      character(len=10) line
      write (line,'(1X,A,T1,A)') 'A','B'
      if (line.ne.'BA') call abort()
      end