brintos

brintos / llvm-project-archived public Read only

0
0
Text · 328 B · a450807 Raw
15 lines · plain
1! RUN: %flang -E %s 2>&1 | FileCheck %s2! CHECK: res = (777)3! ditto, with & ! comment4      integer, parameter :: KWM = 6665#define KWM 7776      integer :: res7      res = (KW& ! comment8&M)9      if (res .eq. 777) then10        print *, 'pp106.F90 yes'11      else12        print *, 'pp106.F90 no: ', res13      end if14      end15