mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
21 lines
363 B
C++
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
|