Clang Project
clang_source_code
/
test
/
Modules
/
Inputs
/
macro-ambiguity
/
e
/
system
/
e_system.h
1
#ifndef E_SYSTEM_H
2
#define E_SYSTEM_H
3
4
#define BAZ1_SYSTEM(x) 2 * x
5
#define BAZ2_SYSTEM(x) 2 * x
6
7
#endif
8