mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
13 lines
322 B
C++
13 lines
322 B
C++
#ifndef TEST_INTEROP_CXX_STATIC_INPUTS_STATIC_MEMBER_FUNC_H
|
|
#define TEST_INTEROP_CXX_STATIC_INPUTS_STATIC_MEMBER_FUNC_H
|
|
|
|
class WithStaticMemberFunc {
|
|
public:
|
|
static int staticMemberFunc();
|
|
typedef int (*Func)();
|
|
static Func getStaticMemberFuncAddress()
|
|
__attribute__((swift_attr("import_unsafe")));
|
|
};
|
|
|
|
#endif
|