opnsense-src/test/SemaObjCXX/pointer-to-objc-pointer-conv.mm
2010-01-23 11:10:26 +00:00

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];
}