/* * Contributed by Nicola Pero * Tue Sep 19 4:29AM */ #include @protocol MyProtocol - (oneway void) methodA; @end @interface MyObject @end @implementation MyObject - (oneway void) methodA { } @end int main (void) { MyObject *object = nil; [object methodA]; return 0; }