summaryrefslogtreecommitdiff
path: root/gcc/testsuite/objc/execute/compatibility_alias.m
blob: 24f47712eecd4d446c0408f752f807f2d4fce761 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/* Contributed by Nicola Pero - Thu Mar  8 17:23:59 CET 2001 */
#include <objc/objc.h>
#include <objc/Object.h>

@compatibility_alias MyObject Object;

int main (void)
{
  MyObject *object = [MyObject alloc];

  return 0;
}