xref: /llvm-project/flang/test/Preprocessing/include-line.F90 (revision fc1c481cf45b41137a08a753c543d8a69d393671)
1! RUN: %flang_fc1 -fdebug-unparse %s -Dj=1 2>&1 | FileCheck %s
2! Ensure that macro definitions don't affect INCLUDE lines (unlike #include)
3#define sin cos
4!CHECK: PRINT *, 0._4, j
5include "include-file.h"
6end
7