blob: 5bb865810c11b67f15a1cf1eba4edfb96e7b9f71 [file] [log] [blame]
! { dg-do run }
!
! Check that PR50221 comment #4 is fixed.
!
! Contributed by Arjen Makus <arjen.markus895@gmail.com>
!
program chk_alloc_string
implicit none
character(len=:), dimension(:), allocatable :: strings
character(20) :: buffer
integer :: i
allocate( character(10):: strings(1:3) )
strings = [ "A ", "C ", "ABCD", "V " ]
if (len(strings) .ne. 4) call abort
if (size(strings, 1) .ne. 4) call abort
if (any (strings .ne. [character(len=4) :: "A", "C", "ABCD", "V"])) call abort
strings = [character(len=4) :: "A", "C", "ABCDE", "V", "zzzz"]
if (len(strings) .ne. 4) call abort
if (size(strings, 1) .ne. 5) call abort
if (any (strings .ne. [character(len=4) :: "A", "C", "ABCD", "V", "zzzz"])) call abort
write (buffer, "(5a4)") strings
if (buffer .ne. "A C ABCDV zzzz") call abort
end program chk_alloc_string