blob: 114214136e21b50d12952057581adc9e1a1797af [file] [log] [blame]
! { dg-do run }
! { dg-options "-fbounds-check" }
! { dg-shouldfail "Unequal character lengths" }
! PR fortran/38137
! Test that -fbounds-check detects unequal character lengths to MERGE
! at runtime.
! Contributed by Tobias Burnus <burnus@gcc.gnu.org>
subroutine foo(a)
implicit none
character(len=*) :: a
character(len=3) :: b
logical :: ll = .true.
print *, merge(a,b,ll) ! Unequal character lengths
end subroutine foo
call foo("ab")
end