mirror of
https://github.com/opnsense/src.git
synced 2026-02-24 10:20:24 -05:00
21 lines
210 B
Text
21 lines
210 B
Text
// RUN: %clang_cc1 -fsyntax-only -verify %s
|
|
|
|
@interface G
|
|
@end
|
|
|
|
@interface F
|
|
- (void)bar:(id *)objects;
|
|
- (void)foo:(G**)objects;
|
|
@end
|
|
|
|
|
|
void a() {
|
|
F *b;
|
|
G **keys;
|
|
[b bar:keys];
|
|
|
|
id *PID;
|
|
[b foo:PID];
|
|
|
|
}
|
|
|