mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
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 .
7 lines
67 B
Objective-C
7 lines
67 B
Objective-C
@interface Bar
|
|
@end
|
|
|
|
@interface Foo : Bar
|
|
- (void)someMethod;
|
|
@end
|