blob: af973cf9d942d195c38da09f61cc7d1e7151d80c [file] [log] [blame]
/*
* Contributed by Nicola Pero <n.pero@mi.flashnet.it>
* Tue Sep 19 4:34AM
*/
#include <objc/objc.h>
@protocol MyProtocol
+ (oneway void) methodA;
@end
@interface MyObject <MyProtocol>
@end
@implementation MyObject
+ (oneway void) methodA
{
printf ("methodA\n");
}
+ initialize { return self; }
@end
int main (void)
{
[MyObject methodA];
return 0;
}