mirror of
https://github.com/opnsense/src.git
synced 2026-04-29 10:11:09 -04:00
22 lines
210 B
Text
22 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];
|
||
|
|
|
||
|
|
}
|
||
|
|
|