Clang Project

clang_source_code/test/Import/enum/Inputs/S.cpp
1enum E {
2  a = 1,
3  b = 2
4};
5
6enum OpaqueWithType : long;
7