aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gfortran.dg/char_array_constructor.f90
blob: 2cf3ae722c522cca041438ec9da4b8ab183e610b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
! { dg-do run }
module z
   integer :: i
   character(6) :: a(2) = (/ ('main  ' , i = 1, 2) /)
   character(6) :: b(2) = (/ 'abcd  ' , 'efghij' /)
end module

program y
  use z
  if (a(1) /= 'main  ') call abort
  if (a(2) /= 'main  ') call abort
  if (b(1) /= 'abcd  ') call abort
  if (b(2) /= 'efghij') call abort
end program y