[flang] Accept polymorphic component element in storage_size
[llvm-project.git] / flang / test / Preprocessing / pp111.F90
blob4da45ef35f5c0c756ed6f50d3f5d0d933ffccb9b
1 ! RUN: %flang -E %s 2>&1 | FileCheck %s
2 ! CHECK: res = IFLM (666)
3 ! FLM call name split across continuation, no leading &, with & ! comment
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 = IFL& ! comment
12 M(666)
13       if (res .eq. 777) then
14         print *, 'pp111.F90 yes'
15       else
16         print *, 'pp111.F90 no: ', res
17       end if
18       end