[HLSL] Implement RWBuffer::operator[] via __builtin_hlsl_resource_getpointer (#117017)
[llvm-project.git] / clang-tools-extra / test / clang-move / Inputs / enum.h
blob9ec39266bd20d70bffd21ae8a87626aa7abd5a67
1 namespace a {
2 enum E1 { Green, Red };
4 enum class E2 { Yellow };
6 class C {
7 enum E3 { Blue };
8 };
9 } // namespace a