blob: c7fb1d3e192da74a16fecce7e11e52fcb4b4f319 [file] [log] [blame]
! RUN: %flang_fc1 -fdebug-unparse %s 2>&1 | FileCheck %s
! Continuation right before character literal.
subroutine test()
! CHECK: CHARACTER(LEN=3_4) :: a = "ABC"
character(len=3) :: a =&
"ABC"
end subroutine