aboutsummaryrefslogtreecommitdiff
path: root/test/Preprocessor/macro_expand.c
blob: a7a80aff4273b424143c6303d63d1dbf76d65039 (plain)
1
2
3
4
5
6
7
// RUN: clang-cc -E %s | grep '^Y$'

#define X() Y
#define Y() X

X()()()