IRGen: Implement init_existential_ref from NSError to ErrorType.

Swift SVN r26712
This commit is contained in:
Joe Groff
2015-03-30 04:52:53 +00:00
parent 751724c3fa
commit be18da2286
5 changed files with 48 additions and 0 deletions

View File

@@ -13,6 +13,9 @@
@interface NSMutableArray : NSObject
@end
@interface NSDictionary : NSObject
@end
@interface NSSet : NSObject
@end
@@ -55,3 +58,10 @@ __attribute__((availability(macosx,introduced=10.10)))
extern int weak_variable __attribute__((weak_import));
@interface NSError : NSObject
@property NSInteger code;
@property NSString *domain;
@property NSDictionary *userInfo;
@end