Move Clang importer test SDK to a toplevel dir test/Inputs where it can be

shared between Clang importer and IDE tests


Swift SVN r11292
This commit is contained in:
Dmitri Hrybenko
2013-12-14 02:20:32 +00:00
parent d29a54d848
commit d35cf945e6
11 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
@import ObjectiveC;
@interface B(Separate)
- (id)method:(int)i separateExtMethod:(double)d;
- (void)anotherCategoryMethod;
@end
@class RefedSub;
@interface SuperRefsSub
- takesSub:(RefedSub*)sub;
- overridden;
@end
@interface RefedSub : SuperRefsSub
- overridden;
@end
@protocol NSRuncing
- (void)runce;
@end
@interface NSMince
- (void)eatWith:(id <NSRuncing>)runcer;
@end