mirror of
https://github.com/Stichting-MINIX-Research-Foundation/netbsd.git
synced 2025-08-14 08:31:28 -04:00
14 lines
179 B
Objective-C
14 lines
179 B
Objective-C
#include "objc.h"
|
|
|
|
static void foo() {
|
|
Sub *sub;
|
|
int x = [sub my_var];
|
|
[sub my_method:x];
|
|
[Sub my_method:x];
|
|
}
|
|
|
|
@implementation Sub
|
|
-(void) my_method: (int)param {
|
|
}
|
|
@end
|