mirror of
https://github.com/opnsense/src.git
synced 2026-02-27 20:01:13 -05:00
14 lines
257 B
Objective-C
14 lines
257 B
Objective-C
// RUN: %clang_cc1 -fsyntax-only -verify %s
|
|
|
|
@interface Object
|
|
- (void)foo;
|
|
@end
|
|
|
|
@interface Class1
|
|
- (void)setWindow:(Object *)wdw;
|
|
@end
|
|
|
|
void foo(void) {
|
|
Object *obj;
|
|
[obj setWindow:0]; // expected-warning{{Object may not respond to 'setWindow:'}}
|
|
}
|