freebsd-dev/test/Index/Inputs/t1.m

21 lines
256 B
Mathematica
Raw Normal View History

2009-11-18 14:59:57 +00:00
#include "objc.h"
static void foo() {
Base *base;
int x = [base my_var];
[base my_method:x];
[Base my_method:x];
}
@implementation Base
-(int) my_var {
return my_var;
}
-(void) my_method: (int)param {
}
+(void) my_method: (int)param {
}
@end