2 ! { dg-options "-std=legacy" }
4 ! Check that NULs don't mess up constant substring simplification
5 CHARACTER(5), parameter :: c0(1) = (/ "123" // ACHAR(0) // "5" /)
7 CHARACTER(1), parameter :: c1(5) = (/ "1", "2", "3", ACHAR(0), "5" /)
10 if (c(1) /= " ") call abort()
13 if (c(1)(i
:i
) /= c1(i
)) call abort()
15 ! Make NULs visible (and avoid corrupting text output).
16 if (c(1)(i
:i
) == ACHAR(0)) then
17 print "(a,$)", "<NUL>"
19 print "(a,$)", c(1)(i
:i
)