mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
11 lines
291 B
Objective-C
11 lines
291 B
Objective-C
#ifndef TEST_INTEROP_CXX_CLASS_INPUTS_CONSTRUCTORS_OBJC_H
|
|
#define TEST_INTEROP_CXX_CLASS_INPUTS_CONSTRUCTORS_OBJC_H
|
|
|
|
#import <Foundation.h>
|
|
|
|
struct ConstructorWithNSArrayParam {
|
|
ConstructorWithNSArrayParam(NSArray *array) {}
|
|
};
|
|
|
|
#endif // TEST_INTEROP_CXX_CLASS_INPUTS_CONSTRUCTORS_OBJC_H
|