blob: b8cbe7f69f2f58a6a5edd5ed0801ff94cf10faf2 [file] [log] [blame]
// RUN: %clang_cc1 -fsyntax-only -verify %s
@interface NSObject @end
@interface DBGViewDebuggerSupport : NSObject
+ (void)addViewLayerInfo:(id)view;
- (void)addInstViewLayerInfo:(id)view;
@end
@interface DBGViewDebuggerSupport_iOS : DBGViewDebuggerSupport
@end
@implementation DBGViewDebuggerSupport_iOS
+ (void)addViewLayerInfo:(id)aView;
{
[super addViewLayerInfo:view]; // expected-error {{use of undeclared identifier 'view'}}
}
- (void)addInstViewLayerInfo:(id)aView;
{
[super addInstViewLayerInfo:view]; // expected-error {{use of undeclared identifier 'view'}}
}
@end