aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gfortran.dg/widechar_9.f90
blob: c78a1eb52fd32678e192803905252f06149057fb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
! { dg-do compile }
!
! PR fortran/37076
!
! Before the result of concatenations was always a kind=1 string
!
program test3
  integer,parameter :: u = 4
  character(1,u),parameter :: nen=char(int(z'5e74'),u) !year
  character(25,u) :: string
  string = u_"2008"//nen
  print *, u_"2008"//nen ! Compiles OK
  print *, u_"2008"//nen//u_"8" ! Rejects this.
end program test3