summaryrefslogtreecommitdiff
path: root/gcc/testsuite/objc/execute/class-1.m
blob: 2ac2c0646c08f1bda528a1e4ad8e25886cf4456e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/* Contributed by Nicola Pero - Tue Mar  6 23:05:53 CET 2001 */

#include "../../objc-obj-c++-shared/next-mapping.h"
#include <objc/objc.h>
#include <objc/objc-api.h>

/* Tests creating a RootClass */

@interface RootClass
{
  Class isa;
}
@end

@implementation RootClass
@end

#include "class-tests-1.h"

int main (void)
{
  test_class_with_superclass ("RootClass", "");

  return 0;
}