llvm-project/clang/test/Preprocessor/macro_fn_disable_expand.c

11 lines
152 B
C
Raw Normal View History

2009-12-14 12:57:53 +08:00
// RUN: clang-cc %s -E | FileCheck %s
2006-07-16 05:06:48 +08:00
#define foo(x) bar x
foo(foo) (2)
2009-12-14 12:57:53 +08:00
// CHECK: bar foo (2)
#define m(a) a(w)
#define w ABCD
2009-12-14 12:57:53 +08:00
m(m)
// CHECK: m(ABCD)