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