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.

15 lines
177 B

// RUN: %clang_cc1 %s -E | FileCheck %s
#define FOO bar ## baz ## 123
// CHECK: A: barbaz123
A: FOO
// PR9981
#define M1(A) A
#define M2(X) X
B: M1(M2(##))
// CHECK: B: ##