Files
netbsd/gnu/dist/gcc4/gcc/testsuite/objc/execute/function-message-1.m
2013-04-06 16:48:33 +02:00

34 lines
368 B
Objective-C

#include <objc/Object.h>
@interface Foo : Object
+ bar;
@end
int foocalled = 0;
int barcalled = 0;
id foo()
{
if (foocalled)
abort ();
foocalled = 1;
return [Foo class];
}
@implementation Foo
+ bar
{
if (barcalled)
abort ();
barcalled = 1;
return self;
}
@end
int main(int argc,char **argv)
{
[foo() bar];
return 0;
}