[Flang][Parser] Add missing #include "flang/Common/idioms.h" (#77484)
[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