Clang Project

clang_source_code/test/Modules/Inputs/macro-ambiguity/a/quote/a_quote.h
1#ifndef A_QUOTE_H
2#define A_QUOTE_H
3
4#define FOO1_QUOTE(x) x + x
5#define BAR1_QUOTE(x) x + x
6#define BAZ1_QUOTE(x) x + x
7
8#endif
9