view gcc/testsuite/gfortran.dg/deferred_character_4.f90 @ 128:fe568345ddd5

fix CbC-example
author mir3636
date Wed, 11 Apr 2018 19:32:28 +0900
parents 04ced10e8804
children 84e7813d76e9
line wrap: on
line source

! { 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