summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/data_char_1.f90
blob: cce31af6c4ac3a9fa63f633468aaea547a030be7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
! { dg-do run }
! Test character variables in data statements
! Also substrings of cahracter variables.
! PR14976 PR16228 
program data_char_1
  character(len=5) :: a(2)
  character(len=5) :: b(2)
  data a /'Hellow', 'orld'/
  data b(:)(1:4), b(1)(5:5), b(2)(5:5) /'abcdefg', 'hi', 'j', 'k'/
  
  if ((a(1) .ne. 'Hello') .or. (a(2) .ne. 'orld ')) call abort
  if ((b(1) .ne. 'abcdj') .or. (b(2) .ne. 'hi  k')) call abort
end program