hanchenye-llvm-project/clang/test/Preprocessor/macro_rescan_varargs.c

14 lines
342 B
C
Raw Normal View History

// RUN: clang-cc -E %s | FileCheck -strict-whitespace %s
2006-07-29 15:32:40 +08:00
#define LPAREN (
#define RPAREN )
#define F(x, y) x + y
#define ELLIP_FUNC(...) __VA_ARGS__
1: ELLIP_FUNC(F, LPAREN, 'a', 'b', RPAREN); /* 1st invocation */
2: ELLIP_FUNC(F LPAREN 'a', 'b' RPAREN); /* 2nd invocation */
// CHECK: 1: F, (, 'a', 'b', );
// CHECK: 2: 'a' + 'b';