teak-llvm/lldb/packages/Python/lldbsuite/test/lang/objc/ivar-IMP/myclass.m
Sean Callanan 8121b3f684 Fixed a problem where a test case referred to a
wrongly-capitalized header.

llvm-svn: 252351
2015-11-06 22:05:47 +00:00

17 lines
262 B
Objective-C

#import <Foundation/Foundation.h>
#import "myclass.h"
@implementation MyClass
{
IMP myImp;
}
- (id)init {
if (self = [super init])
{
SEL theSelector = @selector(init);
self->myImp = [self methodForSelector:theSelector];
}
return self;
}
@end