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
/
pp123.F90
blob
0d5cf016f536e81b82d6ea88162929a9478ad351
1
! RUN: %flang -E %s 2>&1 | FileCheck %s
2
! CHECK: ch = 3HKWM
3
! KWM NOT expanded in Hollerith literal
4
#define KWM 666
5
#define HKWM 667
6
character(len=3) :: ch
7
ch = 3HKWM
8
if (ch .eq. 'KWM') then
9
print *, 'pp123.F90 yes'
10
else
11
print *, 'pp123.F90 no: ', ch
12
end if
13
end