bolt/deps/llvm-18.1.8/flang/test/Preprocessing/unclosed-FLM.F90

8 lines
137 B
Fortran
Raw Normal View History

2025-02-14 19:21:04 +01:00
! RUN: %flang -E %s | FileCheck %s
#define A B(c)
#define B(d) d); call E(d
#define E(f) G(f)
!CHECK: call I(c); call G(c)
call I(A)
end