summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/deferred_character_12.f90
blob: 51c50f2b59e2b477b4b26c4aace3a29f7dcf5489 (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
36
37
! { dg-do run }
!
! Tests the fix for PR63232
!
! Contributed by Balint Aradi  <baradi09@gmail.com>
!
module mymod
  implicit none

  type :: wrapper
    character(:), allocatable :: string
  end type wrapper

contains


  subroutine sub2(mystring)
    character(:), allocatable, intent(out) :: mystring

    mystring = "test"

  end subroutine sub2

end module mymod


program test
  use mymod
  implicit none

  type(wrapper) :: mywrapper

  call sub2(mywrapper%string)
  if (.not. allocated(mywrapper%string)) STOP 1
  if (trim(mywrapper%string) .ne. "test") STOP 2

end program test