mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
15 lines
282 B
C++
15 lines
282 B
C++
#ifndef TEST_INTEROP_CXX_CLASS_INPUTS_FORWARD_DECLARED_IN_NAMESPACE_H
|
|
#define TEST_INTEROP_CXX_CLASS_INPUTS_FORWARD_DECLARED_IN_NAMESPACE_H
|
|
|
|
namespace Space {
|
|
|
|
struct C;
|
|
|
|
struct C {
|
|
void test() const;
|
|
};
|
|
|
|
}
|
|
|
|
#endif // TEST_INTEROP_CXX_CLASS_INPUTS_FORWARD_DECLARED_IN_NAMESPACE_H
|