[flang] Accept polymorphic component element in storage_size
[llvm-project.git] / flang / test / Preprocessing / pp103.F90
blob0384d8c193fa27e478fe4efb1a681c1352c2c4df
1 ! RUN: %flang -E %s 2>&1 | FileCheck %s
2 ! CHECK: res = ((666)+111)
3 ! function-like macros
4       integer function IFLM(x)
5         integer :: x
6         IFLM = x
7       end function IFLM
8       program main
9 #define IFLM(x) ((x)+111)
10       integer :: res
11       res = IFLM(666)
12       if (res .eq. 777) then
13         print *, 'pp103.F90 yes'
14       else
15         print *, 'pp103.F90 no: ', res
16       end if
17       end