bd52d17906
too large to list, but see: http://gcc.gnu.org/gcc-3.4/changes.html http://gcc.gnu.org/gcc-4.0/changes.html http://gcc.gnu.org/gcc-4.1/changes.html for the details.
32 lines
1.1 KiB
Plaintext
32 lines
1.1 KiB
Plaintext
/* Check that sending messages to variables of type 'Class' does not involve instance methods, unless they reside in root classes. */
|
|
/* Author: Ziemowit Laski <zlaski@apple.com> */
|
|
/* { dg-options "-Wstrict-selector-match" } */
|
|
/* { dg-do compile } */
|
|
|
|
#include <objc/Protocol.h>
|
|
|
|
@interface Base
|
|
- (unsigned)port;
|
|
@end
|
|
|
|
@interface Derived: Base
|
|
- (Object *)port;
|
|
+ (Protocol *)port;
|
|
- (id)starboard;
|
|
@end
|
|
|
|
void foo(void) {
|
|
Class receiver;
|
|
|
|
[receiver port]; /* { dg-warning "multiple methods named .\\+port. found" } */
|
|
/* { dg-warning "using .\\-\\(unsigned( int)?\\)port." "" { target *-*-* } 9 } */
|
|
/* { dg-warning "also found .\\+\\(Protocol \\*\\)port." "" { target *-*-* } 14 } */
|
|
|
|
[receiver starboard]; /* { dg-warning "no .\\+starboard. method found" } */
|
|
/* { dg-warning "Messages without a matching method signature" "" { target *-*-* } 25 } */
|
|
/* { dg-warning "will be assumed to return .id. and accept" "" { target *-*-* } 25 } */
|
|
/* { dg-warning ".\.\.\.. as arguments" "" { target *-*-* } 25 } */
|
|
|
|
[Class port]; /* { dg-error ".Class. is not an Objective\\-C class name or alias" } */
|
|
}
|