this repo has no description
at fixPythonPipStalling 27 lines 338 B view raw
1#import <Foundation/NSObject.h> 2#include <stdio.h> 3 4// for old runtime testing 5@interface RandomClass : NSObject 6@end 7 8@implementation RandomClass 9@end 10 11@interface NSObject (MyCategory) 12+(void) dummy; 13@end 14 15@implementation NSObject (MyCategory) 16+(void) dummy 17{ 18 puts("dummy called"); 19} 20@end 21 22int main() 23{ 24 [NSObject dummy]; 25 return 0; 26} 27