bd52d17906
too large to list, but see: http://gcc.gnu.org/gcc-3.4/changes.html http://gcc.gnu.org/gcc-4.0/changes.html http://gcc.gnu.org/gcc-4.1/changes.html for the details.
44 lines
526 B
Plaintext
44 lines
526 B
Plaintext
/* Check @defs() in Objective-C++ */
|
|
/* Contributed by Devang Patel <dpatel@apple.com> */
|
|
|
|
/* { dg-options "-lobjc" } */
|
|
/* { dg-do run } */
|
|
|
|
#include <stdlib.h>
|
|
#include <objc/objc.h>
|
|
#include <objc/Object.h>
|
|
|
|
extern void abort(void);
|
|
|
|
@interface A : Object
|
|
{
|
|
@public
|
|
int a;
|
|
}
|
|
@end
|
|
|
|
struct A_defs
|
|
{
|
|
@defs(A);
|
|
};
|
|
|
|
@implementation A
|
|
- init
|
|
{
|
|
a = 42;
|
|
return self;
|
|
}
|
|
@end
|
|
|
|
|
|
int main()
|
|
{
|
|
A *a = [A init];
|
|
struct A_defs *a_defs = (struct A_defs *)a;
|
|
|
|
if (a->a != a_defs->a)
|
|
abort ();
|
|
|
|
return 0;
|
|
}
|