blob: 2e6eb1b2b88feb3ceba042b95f376fda3d7b30e1 [file] [log] [blame]
! { dg-do run }
! PR 27784 - Different strings should compare unequal even if they
! have CHAR(0) in them.
program main
character*3 str1, str2
call setval(str1, str2)
if (str1 == str2) call abort
end
subroutine setval(str1, str2)
character*3 str1, str2
str1 = 'a' // CHAR(0) // 'a'
str2 = 'a' // CHAR(0) // 'c'
end