Clang Project
clang_source_code
/
test
/
Modules
/
Inputs
/
macro-ambiguity
/
c
/
quote
/
c_quote.h
1
#ifndef C_QUOTE_H
2
#define C_QUOTE_H
3
4
#define FOO1_QUOTE(x) 2 * x
5
#define FOO2_QUOTE(x) 2 * x
6
7
#endif
8