Files
clang-p2996/flang/test/Preprocessing/bug134986.F90
Peter Klausler cf8c02f71d [flang] Don't insert spaces in -E output after line continuation (#135063)
See test case. When Fortran line continuation has been used, don't
insert spaces in -E formatted output to put things into the right
column, as this can break up a token.

Fixes https://github.com/llvm/llvm-project/issues/134986.
2025-04-10 09:57:08 -07:00

6 lines
135 B
Fortran

! RUN: %flang -E %s 2>&1 | FileCheck %s
! CHECK: print *, "HELLO "//" WORLD"
print *, "HELLO "/&
&/" WORLD"
end