[flang] Accept polymorphic component element in storage_size
[llvm-project.git] / flang / test / Preprocessing / pp001.F
blobe222b9598df1b5b2caa79038ed729a1e1cf8bffd
1 ! RUN: %flang -E %s 2>&1 | FileCheck %s
2 ! CHECK: if (777 .eq. 777) then
3 * keyword macros
4       integer, parameter :: KWM = 666
5 #define KWM 777
6       if (KWM .eq. 777) then
7         print *, 'pp001.F yes'
8       else
9         print *, 'pp001.F no: ', KWM
10       end if
11       end