You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
344 B
14 lines
344 B
// RUN: %clang_cc1 -E %s | FileCheck -strict-whitespace %s
|
|
|
|
#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';
|
|
|