…ne continuation Allow preprocessing directives to appear between a source line and its continuation, including conditional compilation directives (#if, #ifdef, &c.). Fixes https://github.com/llvm/llvm-project/issues/95476.
7 lines
104 B
Fortran
7 lines
104 B
Fortran
! RUN: %flang -E %s 2>&1 | FileCheck %s
|
|
! CHECK: call foo(3.14159 )
|
|
call foo (&
|
|
#include "args.h"
|
|
)
|
|
end
|