aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gfortran.dg/argument_checking_1.f90
blob: b42047ae62405455222ffc75664ba8ad0b3d8e6c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
! { dg-do run }
!
! PR fortran/30940
program main
  implicit none
  character(len=10) :: digit_string = '123456789', str
  character :: digit_arr(10)
  call copy(digit_string, digit_arr)
  call copy(digit_arr,str)
  if(str /= '123456789') call abort()
  digit_string = 'qwertasdf'
  call copy2(digit_string, digit_arr)
  call copy2(digit_arr,str)
  if(str /= 'qwertasdf') call abort()
  digit_string = '1qayxsw23e'
  call copy3("1qayxsw23e", digit_arr)
  call copy3(digit_arr,str)
  if(str /= '1qayxsw23e') call abort()
contains
  subroutine copy(in, out)
    character, dimension(*)  :: in
    character, dimension(10) :: out
    out = in(:10)
  end subroutine copy
  subroutine copy2(in, out)
    character, dimension(2,*)  :: in
    character, dimension(2,5) :: out
    out(1:2,1:5) = in(1:2,1:5)
  end subroutine copy2
  subroutine copy3(in, out)
    character(len=2), dimension(5)  :: in
    character(len=2), dimension(5) :: out
    out = in
  end subroutine copy3
end program main