aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gfortran.fortran-torture/execute/string.f90
blob: f220f4a477bb59dfc3775d5a479cb2428d02cd25 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
! Program to test string handling
program string
   implicit none
   character(len=5) :: a, b
   character(len=20) :: c

   a = 'Hello'
   b = 'World'
   c = a//b

   if (c .ne. 'HelloWorld') call abort
   if (c .eq. 'WorldHello') call abort
   if (a//'World' .ne. 'HelloWorld') call abort
   if (a .ge. b) call abort
end program