[flang] Accept polymorphic component element in storage_size
[llvm-project.git] / flang / test / Preprocessing / pp122.F90
blob8051cbd4c67c4c8c51af2d3b46ea776560f9ac3c
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