blob: d36bc8cbc91b11c96fd13ce62a904e8a2b592023 [file] [log] [blame]
// RUN: clang-cc -verify %s
typedef struct objc_class *Class;
@interface XX
- (void)addObserver:(XX*)o;
@end
@interface YY
+ (void)classMethod;
@end
@implementation YY
static XX *obj;
+ (void)classMethod {
[obj addObserver:self];
Class whatever;
[obj addObserver:whatever]; // GCC warns about this.
}
@end