xref: /llvm-project/flang/test/Preprocessing/include-comment.F90 (revision 505f6da1961ab55c601d7239648c53ce863b5d70)
1! RUN: %flang -pedantic -I%S -E %s 2>&1 | FileCheck %s
2! CHECK-NOT: :3:
3#include <empty.h> ! comment
4! CHECK-NOT: :5:
5#include <empty.h> /* comment */
6! CHECK-NOT: :7:
7#include <empty.h> !comment
8! CHECK: :9:10: portability: #include: extra stuff ignored after file name
9#include <empty.h> comment
10! CHECK-NOT: :11:
11#include "empty.h" ! comment
12! CHECK-NOT: :13:
13#include "empty.h" /* comment */
14! CHECK-NOT: :15:
15#include "empty.h" !comment
16! CHECK: :17:10: portability: #include: extra stuff ignored after file name
17#include "empty.h" comment
18end
19