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] Accept polymorphic component element in storage_size
[llvm-project.git]
/
flang
/
test
/
Preprocessing
/
pp122.F90
blob
8051cbd4c67c4c8c51af2d3b46ea776560f9ac3c
1
! RUN: %flang -E %s 2>&1 | FileCheck %s
2
! CHECK: ch = "KWM"
3
! KWM NOT expanded in "literal"
4
#define KWM 666
5
character(len=3) :: ch
6
ch = "KWM"
7
if (ch .eq. 'KWM') then
8
print *, 'pp122.F90 yes'
9
else
10
print *, 'pp122.F90 no: ', ch
11
end if
12
end