Clang Project

clang_source_code/test/Modules/Inputs/ignored_macros.h
1struct Point {
2  double x, y;
3};
4
5#ifdef IGNORED
6int *has_ignored(void);
7#endif
8
9