[HLSL] Implement RWBuffer::operator[] via __builtin_hlsl_resource_getpointer (#117017)
[llvm-project.git] / clang-tools-extra / test / clang-move / Inputs / macro_helper_test.cpp
blobc2c1e1e1aae6dc4866e4d60503d62758676b1c21
1 #include "macro_helper_test.h"
3 #define DEFINE(name) \
4 namespace ns { \
5 static const bool t1 = false; \
6 bool t2_##name = t1; \
7 bool t3_##name = t1; \
8 } \
9 using ns::t2_##name;
11 DEFINE(test)
13 void f1() {}