524f0d335e
^KT-61259
18 lines
267 B
Objective-C
Vendored
18 lines
267 B
Objective-C
Vendored
#import <Foundation/NSString.h>
|
|
|
|
struct CStructWithNSObjects {
|
|
id any;
|
|
|
|
NSString* nsString;
|
|
NSString* _Nonnull nonNullString;
|
|
NSObject* object;
|
|
|
|
NSArray* array;
|
|
NSMutableArray* mutableArray;
|
|
|
|
NSSet* set;
|
|
|
|
NSDictionary* dictionary;
|
|
};
|
|
|