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

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [objc/] [execute/] [redefining_self.m] - Blame information for rev 702

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 702 jeremybenn
/* Contributed by Nicola Pero - Fri Mar  9 19:39:15 CET 2001 */
2
#include <objc/objc.h>
3
 
4
/* Test redefining self */
5
 
6
@interface TestClass
7
{
8
  Class isa;
9
}
10
+ (Class) class;
11
@end
12
 
13
@implementation TestClass
14
+ (Class) class
15
{
16
  self = Nil;
17
 
18
  return self;
19
}
20
+ initialize { return self; }
21
@end
22
 
23
 
24
int main (void)
25
{
26
  if ([TestClass class] != Nil)
27
    {
28
      abort ();
29
    }
30
 
31
  return 0;
32
}

powered by: WebSVN 2.1.0

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