mirror of
https://github.com/opnsense/src.git
synced 2026-02-26 03:13:02 -05:00
13 lines
179 B
Objective-C
13 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
|