Files
clang-p2996/lldb/test/lang/objc/modules-incomplete/myModule.m
Sean Callanan 7176ca2749 A new testcase had a silly integer-value mismatch.
Fixed that.

llvm-svn: 234023
2015-04-03 17:08:45 +00:00

15 lines
196 B
Objective-C

#include "myModule.h"
#include "stdio.h"
@implementation MyClass {
};
-(void)publicMethod {
printf("Hello public!\n");
}
-(int)privateMethod {
printf("Hello private!\n");
return 5;
}
@end