test/Preprocessor/macro_paste_simple.c and macro_paste_bad.c. There are several known bugs still. llvm-svn: 38733
6 lines
136 B
C
6 lines
136 B
C
// RUN: clang -Eonly %s 2>&1 | grep error
|
|
// pasting ""x"" and ""+"" does not give a valid preprocessing token
|
|
#define XYZ x ## +
|
|
XYZ
|
|
|