summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/merge_char_3.f90
blob: 498e3ec73c54dc3e0ad35a7cb628fa0546fd6a66 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
! { 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
print *, merge(a,b,.true.)  ! Unequal character lengths
end subroutine foo

call foo("ab")
end