Clang Project
clang_source_code
/
test
/
Modules
/
Inputs
/
macro-ambiguity
/
d
/
quote
/
d_quote.h
1
#ifndef D_QUOTE_H
2
#define D_QUOTE_H
3
4
#define BAR1_QUOTE(x) 2 * x
5
#define BAR2_QUOTE(x) 2 * x
6
7
#endif
8