mirror of
https://github.com/opnsense/src.git
synced 2026-02-26 03:13:02 -05:00
17 lines
187 B
Objective-C
17 lines
187 B
Objective-C
// RUN: %clang_cc1 -g -S -o %t %s
|
|
// RUN: not grep 001 %t
|
|
|
|
@interface F
|
|
-(int) bar;
|
|
@end
|
|
|
|
@implementation F
|
|
-(int) bar {
|
|
return 42;
|
|
}
|
|
@end
|
|
|
|
extern int f(F *fn) {
|
|
return [fn bar];
|
|
}
|
|
|