xref: /llvm-project/flang/test/Parser/continuation-in-if.f (revision 96d229c9abdfb2836e18a554bfb63b5d52aeebfa)
1! RUN: %flang_fc1 -fdebug-unparse %s 2>&1 | FileCheck %s
2! CHECK: CALL foo("N","N")
3#ifdef transpose
4      call foo('T',
5#else
6      call foo('N',
7#endif
8     $     'N')
9      end
10