[Flang][OpenMP]Add parsing support for DISPATCH construct (#121982)
[llvm-project.git] / flang / test / Parser / continuation-before-char.f90
blobc7fb1d3e192da74a16fecce7e11e52fcb4b4f319
1 ! RUN: %flang_fc1 -fdebug-unparse %s 2>&1 | FileCheck %s
2 ! Continuation right before character literal.
3 subroutine test()
4 ! CHECK: CHARACTER(LEN=3_4) :: a = "ABC"
5 character(len=3) :: a =&
6 "ABC"
7 end subroutine