URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [objc.dg/] [method-15.m] - Rev 313
Go to most recent revision | Compare with Previous | Blame | View Log
/* Test if prior method lookup at method @implementation time is not overly aggressive, leading to methods being found in other classes. */ /* Author: Ziemowit Laski <zlaski@apple.com>. */ /* { dg-do compile } */ #include "../objc-obj-c++-shared/Object1.h" @class NSString; @protocol NSMenuItem + (void)setUsesUserKeyEquivalents:(BOOL)flag; + (BOOL)usesUserKeyEquivalents; @end @interface NSMenuItem : Object <NSMenuItem> { @private id _menu; } @end @interface NSResponder : Object <NSMenuItem> { id _nextResponder; } @end @interface Object(NSMenuValidation) - (BOOL)validateMenuItem:(id <NSMenuItem>)menuItem; @end @interface NSResponder (NSStandardKeyBindingMethods) - (void)insertText:(id)insertString; - (void)doCommandBySelector:(SEL)aSelector; @end @interface NSView : NSResponder { id _superview; id _subviews; } @end @interface SKTGraphicView : NSView { @private float _gridSpacing; } @end @implementation SKTGraphicView - (BOOL)validateMenuItem:(NSMenuItem *)item { return (BOOL)1; } - (void)insertText:(NSString *)str { } @end
Go to most recent revision | Compare with Previous | Blame | View Log