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