OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [objc/] [execute/] [root_methods.m] - Rev 702

Compare with Previous | Blame | View Log

/* Contributed by Nicola Pero - Thu Mar  8 16:27:46 CET 2001 */
 
#import "../../objc-obj-c++-shared/runtime.h"
#import <objc/objc.h>
 
/* Test that instance methods of root classes are available as class 
   methods to other classes as well */
 
@interface RootClass
{
  Class isa;
}
- (id) self;
@end
 
@implementation RootClass
- (id) self
{
  return self;
}
+ initialize { return self; }
@end
 
@interface NormalClass : RootClass
@end
 
@implementation NormalClass : RootClass
@end
 
int main (void)
{
  Class normal = objc_getClass ("NormalClass");
 
  if (normal == Nil)
    {
      abort ();
    }
 
  if ([NormalClass self] != normal)
    {
      abort ();
    }
 
  return 0;
}
 

Compare with Previous | Blame | View Log

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.