Clang Project
clang_source_code
/
test
/
Modules
/
Inputs
/
macro-ambiguity
/
e
/
quote
/
e_quote.h
1
#ifndef E_QUOTE_H
2
#define E_QUOTE_H
3
4
#define BAZ1_QUOTE(x) 2 * x
5
#define BAZ2_QUOTE(x) 2 * x
6
7
#endif
8