Files
swift-mirror/test/Interop/Cxx/modules/Inputs/namespace.h
Alex Lorenz 045fcf3ff5 [interop] Prohibit use of C++ APIs in public interfaces that opt-in into library evolution
The CxxStdlib overlay now has to be built without library evolution enabled.
2023-04-13 10:48:09 -07:00

21 lines
363 B
C++

#ifndef TEST_INTEROP_CXX_MODULES_INPUTS_NAMESPACE_H
#define TEST_INTEROP_CXX_MODULES_INPUTS_NAMESPACE_H
namespace Namespace {
using SimpleTypealias = int;
struct Parent {
struct Child {};
};
namespace NestedNamespace {
struct NestedStruct {};
} // namespace NestedNamespace
} // namespace Namespace
#endif // TEST_INTEROP_CXX_MODULES_INPUTS_NAMESPACE_H