• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1! RUN: %f18 -E %s 2>&1 | FileCheck %s
2! CHECK: if(777.eq.777)then
3! CHECK: print*,'pp034.F no: ',777
4* \ newline allowed in name on KWM definition
5      integer, parameter :: KWMC = 666
6#define KWM\
7C 777
8      if (KWMC .eq. 777) then
9        print *, 'pp034.F yes'
10      else
11        print *, 'pp034.F no: ', KWMC
12      end if
13      end
14