[LLVM] Fix Maintainers.md formatting (NFC)
[llvm-project.git] / flang / test / Preprocessing / parse-preprocessed.F
blobc60be7665618b5b65c49991bc80674e2178ecb50
1 ! Verify that the output from `-E` is valid fixed-form source. See
2 ! https://bugs.llvm.org/show_bug.cgi?id=50993.
4 ! RUN: %flang_fc1 -E %s 2>&1 | %flang_fc1 -fsyntax-only -ffixed-form 2>&1 | FileCheck %s --allow-empty
6 ! CHECK-NOT: error
7 ! CHECK-NOT: warning
9 ! https://bugs.llvm.org/show_bug.cgi?id=51219
10 ! CHECK-NOT: Character in fixed-form label field must be a digit
12       PROGRAM HELLO
13         write(*, *), "hello, world!"
14 c     Some irrelevant comment that's only valid in fixed-form
15       END PROGRAM