blob: 382df36375d55ada3e07898111763d1b999716bd [file] [log] [blame]
! { dg-do run }
!
! PR82934: Segfault on compilation in trans-stmt.c:5919(8.0.0).
! The original report only had one item in the allocate list. This
! has been doubled up to verify that the correct string length is
! is used in the allocation.
!
! Contributed by FortranFan on clf.
!
character(len=42), allocatable :: foo
character(len=22), allocatable :: foofoo
call alloc( foo , foofoo)
if (len(foo) .ne. 42) call abort
if (len(foofoo) .ne. 22) call abort
contains
subroutine alloc( bar, barbar )
character(len=*), allocatable :: bar, barbar
allocate( character(len=*) :: bar , barbar) ! <= Here!
end subroutine
end