1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
// 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
|