blob: 3ec78fd0bd6ba81604bd561a9b531420c6dc87b9 [file] [log] [blame]
#import <Foundation/Foundation.h>
@interface Foo : NSObject {}
-(id) init;
@end
@implementation Foo
-(id) init
{
return self = [super init];
}
@end
int main ()
{
Foo *foo = [Foo new];
NSLog(@"a"); // Set breakpoint here.
return 0;
}