1// RUN: %clang_cc1 -triple x86_64-apple-darwin9.0.0 -fsyntax-only -verify %s 2// RUN: %clang_cc1 -x objective-c++ -std=c++11 -triple x86_64-apple-darwin9.0.0 -fsyntax-only -verify %s 3// RUN: %clang_cc1 -x objective-c++ -std=c++03 -triple x86_64-apple-darwin9.0.0 -fsyntax-only -verify %s 4 5#if !__has_feature(attribute_availability_with_version_underscores) 6# error "missing feature" 7#endif 8 9@protocol P 10- (void)proto_method __attribute__((availability(macosx,introduced=10_1,deprecated=10_2))); // expected-note 2 {{'proto_method' has been explicitly marked deprecated here}} 11@end 12 13@interface A <P> 14- (void)method __attribute__((availability(macosx,introduced=10_1,deprecated=10_2))); // expected-note {{'method' has been explicitly marked deprecated here}} 15 16- (void)overridden __attribute__((availability(macosx,introduced=10_3))); // expected-note{{overridden method is here}} 17- (void)overridden2 __attribute__((availability(macosx,introduced=10_3))); 18- (void)overridden3 __attribute__((availability(macosx,deprecated=10_3))); 19- (void)overridden4 __attribute__((availability(macosx,deprecated=10_3))); // expected-note{{overridden method is here}} 20- (void)overridden5 __attribute__((availability(macosx,unavailable))); 21- (void)overridden6 __attribute__((availability(macosx,introduced=10_3))); // expected-note{{overridden method is here}} 22@end 23 24@interface B : A 25- (void)method; // NOTE: we expect 'method' to *not* inherit availability. 26- (void)overridden __attribute__((availability(macosx,introduced=10_4))); // expected-warning{{overriding method introduced after overridden method on macOS (10.4 vs. 10.3)}} 27- (void)overridden2 __attribute__((availability(macosx,introduced=10_2))); 28- (void)overridden3 __attribute__((availability(macosx,deprecated=10_4))); 29- (void)overridden4 __attribute__((availability(macosx,deprecated=10_2))); // expected-warning{{overriding method deprecated before overridden method on macOS (10.3 vs. 10.2)}} 30- (void)overridden5 __attribute__((availability(macosx,introduced=10_3))); 31- (void)overridden6 __attribute__((availability(macosx,unavailable))); // expected-warning{{overriding method cannot be unavailable on macOS when its overridden method is available}} 32@end 33 34void f(A *a, B *b) { 35 [a method]; // expected-warning{{'method' is deprecated: first deprecated in macOS 10.2}} 36 [b method]; // no-warning 37 [a proto_method]; // expected-warning{{'proto_method' is deprecated: first deprecated in macOS 10.2}} 38 [b proto_method]; // expected-warning{{'proto_method' is deprecated: first deprecated in macOS 10.2}} 39} 40 41// Warn about using a deprecated method when that method is re-implemented in a 42// subclass where the redeclared method is not deprecated. 43@interface C 44- (void) method __attribute__((availability(macosx,introduced=10_1,deprecated=10_2))); // expected-note {{'method' has been explicitly marked deprecated here}} 45@end 46 47@interface D : C 48- (void) method; 49@end 50 51@interface E : D 52- (void) method; 53@end 54 55@implementation D 56- (void) method { 57 [super method]; // expected-warning {{'method' is deprecated: first deprecated in macOS 10.2}} 58} 59@end 60 61@implementation E 62- (void) method { 63 [super method]; // no-warning 64} 65@end 66 67@class NSMutableArray; 68 69@interface NSDictionary 70+ (instancetype)dictionaryWithObjectsAndKeys:(id)firstObject, ... __attribute__((sentinel(0,1))); 71@end 72 73@class NSString; 74 75extern NSString *NSNibTopLevelObjects __attribute__((availability(macosx,introduced=10_0 ,deprecated=10_8,message="" ))); 76id NSNibOwner, topNibObjects; 77 78@interface AppDelegate (SIEImport) // expected-error {{cannot find interface declaration for 'AppDelegate'}} 79 80-(void)__attribute__((ibaction))importFromSIE:(id)sender; 81 82@end 83 84@implementation AppDelegate (SIEImport) // expected-error {{cannot find interface declaration for 'AppDelegate'}} 85 86-(void)__attribute__((ibaction))importFromSIE:(id)sender { 87 88 NSMutableArray *topNibObjects; 89 NSDictionary *nibLoadDict = [NSDictionary dictionaryWithObjectsAndKeys:self, NSNibOwner, topNibObjects, NSNibTopLevelObjects, ((void *)0)]; 90} 91 92@end 93 94@interface Mixed 95- (void)Meth1 __attribute__((availability(macosx,introduced=10.3_0))); // expected-warning {{use same version number separators '_' or '.'}} 96- (void)Meth2 __attribute__((availability(macosx,introduced=10_3.1))); // expected-warning {{use same version number separators '_' or '.'}} 97@end 98 99@protocol P18804883 100- (void)proto_method __attribute__((availability(macosx,introduced=10_1,deprecated=NA))); // means nothing (not deprecated) 101@end 102 103@interface A18804883 <P18804883> 104- (void)interface_method __attribute__((availability(macosx,introduced=NA))); // expected-note {{'interface_method' has been explicitly marked unavailable here}} 105- (void)strange_method __attribute__((availability(macosx,introduced=NA,deprecated=NA))); // expected-note {{'strange_method' has been explicitly marked unavailable here}} 106- (void) always_available __attribute__((availability(macosx,deprecated=NA))); 107@end 108 109void foo (A18804883* pa) { 110 [pa interface_method]; // expected-error {{'interface_method' is unavailable: not available on macOS}} 111 [pa proto_method]; 112 [pa strange_method]; // expected-error {{'strange_method' is unavailable: not available on macOS}} 113 [pa always_available]; 114} 115 116