mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
15 lines
244 B
C++
15 lines
244 B
C++
#ifndef TEST_INTEROP_CXX_NAMESPACE_INPUTS_ENUMS_H
|
|
#define TEST_INTEROP_CXX_NAMESPACE_INPUTS_ENUMS_H
|
|
|
|
namespace EnumNS1 {
|
|
|
|
enum AnEnum {
|
|
one,
|
|
two,
|
|
three
|
|
};
|
|
|
|
} // namespace EnumNS1
|
|
|
|
#endif // TEST_INTEROP_CXX_NAMESPACE_INPUTS_ENUMS_H
|