You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
@interface A
|
|
- (int)instanceMethod1:(int)x;
|
|
+ (int)classMethod1:(double)d;
|
|
@end
|
|
|
|
@interface B
|
|
- (int)instanceMethod2:(int)x;
|
|
+ (int)classMethod2:(float)f;
|
|
@end
|
|
|