aboutsummaryrefslogtreecommitdiff
path: root/flang/test/Preprocessing/implicit-contin2.F90
blob: 430dee959900249adf3c8f1c0d1a173574ad4bc8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
! RUN: %flang -E %s | FileCheck %s
! Test implicit continuation for possible function-like macro calls
#define flm(x) x
print *, flm(1)
continue
print *, flm(2
)
end

!CHECK:      print *, 1
!CHECK:      continue
!CHECK:      print *, 2
!CHECK:      end