brintos

brintos / llvm-project-archived public Read only

0
0
Text · 843 B · 3ad38bf Raw
22 lines · plain
1// RUN: %check_clang_tidy %s objc-forbidden-subclassing %t2 3@interface UIImagePickerController4@end5 6@interface Foo : UIImagePickerController7// CHECK-MESSAGES: :[[@LINE-1]]:12: warning: Objective-C interface 'Foo' subclasses 'UIImagePickerController', which is not intended to be subclassed [objc-forbidden-subclassing]8@end9 10// Check subclasses of subclasses.11@interface Bar : Foo12// CHECK-MESSAGES: :[[@LINE-1]]:12: warning: Objective-C interface 'Bar' subclasses 'UIImagePickerController', which is not intended to be subclassed [objc-forbidden-subclassing]13@end14 15@interface Baz16@end17 18// Make sure innocent subclasses aren't caught by the check.19@interface Blech : Baz20// CHECK-MESSAGES-NOT: :[[@LINE-1]]:12: warning: Objective-C interface 'Blech' subclasses 'Baz', which is not intended to be subclassed [objc-forbidden-subclassing]21@end22