blob: 0e4ea31b7d10f31e684005953855d29c1f985be7 [file] [log] [blame]
#include <stdlib.h>
#import "../../objc-obj-c++-shared/TestsuiteObject.m"
@interface Foo : TestsuiteObject
+ foo;
+ bar;
@end
int foocalled = 0;
int barcalled = 0;
@implementation Foo
+ foo
{
if (foocalled)
abort ();
foocalled = 1;
return self;
}
+ bar
{
if (barcalled)
abort ();
barcalled = 1;
return self;
}
@end
int main(int argc,char **argv)
{
[[Foo foo] bar];
return 0;
}