llvm-project/clang/test/Preprocessor/macro_expand.c

8 lines
75 B
C

// RUN: clang-cc -E %s | grep '^Y$'
#define X() Y
#define Y() X
X()()()