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-12.m] - Rev 378
Go to most recent revision | Compare with Previous | Blame | View Log
/* Contributed by Igor Seleznev <selez@mail.ru>. */ /* This used to be broken. */ #include <objc/objc.h> @interface A + (A *)currentContext; @end @interface B + (B *)currentContext; @end int main() { [A currentContext]; /* { dg-bogus "multiple declarations" } */ return 0; } @implementation A + (A *)currentContext { return nil; } @end @implementation B + (B *)currentContext { return nil; } @end
Go to most recent revision | Compare with Previous | Blame | View Log