Files
swift-mirror/test/ClangModules/Inputs/custom-modules/ProtoWithInitializer.h
Jordan Rose 8582cc10d8 [ClangImporter] Fix the interface type of imported protocol initializers.
We should be returning the declared type of the implicit 'Self' parameter,
not the archetype.

<rdar://problem/16520667>

Swift SVN r16081
2014-04-08 23:17:10 +00:00

4 lines
51 B
Objective-C

@protocol InitProto
- (id)initWithInt:(int)i;
@end