[LLVM] Fix Maintainers.md formatting (NFC)
[llvm-project.git] / flang / test / Preprocessing / pp105.F90
blobe861e9688d2c54a4bfb42fff6c7ad6ad156aca86
1 ! RUN: %flang -E %s 2>&1 | FileCheck %s
2 ! CHECK: res = (777)
3 ! KWM call name split across continuation, with leading &
4       integer, parameter :: KWM = 666
5 #define KWM 777
6       integer :: res
7       res = (KW&
8 &M)
9       if (res .eq. 777) then
10         print *, 'pp105.F90 yes'
11       else
12         print *, 'pp105.F90 no: ', res
13       end if
14       end