URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [objc.dg/] [proto-lossage-7.m] - Rev 704
Compare with Previous | Blame | View Log
/* Check that typedefs of ObjC classes preserve any @protocol qualifiers. */ /* { dg-do compile } */ #include <objc/Object.h> @protocol CanDoStuff; typedef Object<CanDoStuff> CanDoStuffType; typedef Object<CanDoStuff> *CanDoStuffTypePtr; @protocol CanDoStuff - (int) dostuff; @end @protocol MoreStuff - (int) morestuff; @end int main(void) { CanDoStuffTypePtr dice = nil; CanDoStuffType *nodice = nil; int count; count = [dice dostuff]; count = [nodice dostuff]; return 0; }