xref: /llvm-project/flang/test/Preprocessing/implicit-contin1.F90 (revision 50e1ad6ed23682d3a992a2e8c8b7db64baaccb66)
1! RUN: %flang -E %s | FileCheck %s
2! When there's an object-like macro don't apply implicit continuation.
3#define M )
4call foo (1 M
5end
6
7!CHECK:      call foo(1 )
8!CHECK:      end
9