Files
swift-mirror/test/ClangImporter/Inputs/objc_curried_method.h
Huon Wilson b60aef8536 [ClangImporter] Correct curried method types for SE-110.
Method types are now required to be `(Self) -> (Args...) -> Return`, not
`Self -> (Args...) -> Return`.

See also https://github.com/apple/swift/pull/9454 .

Fixes rdar://problem/32588152 .
2017-06-13 17:53:21 -07:00

7 lines
67 B
Objective-C

@interface Bar
@end
@interface Foo : Bar
- (void)someMethod;
@end