repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[Flang][OpenMP]Add parsing support for DISPATCH construct (#121982)
[llvm-project.git]
/
flang
/
test
/
Parser
/
continuation-before-char.f90
blob
c7fb1d3e192da74a16fecce7e11e52fcb4b4f319
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