mirror of
https://github.com/Gericom/teak-llvm.git
synced 2025-06-25 22:38:56 -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
|