brintos

brintos / llvm-project-archived public Read only

0
0
Text · 5.1 KiB · 79bcf28 Raw
116 lines · plain
1// RUN: %clang_cc1 -triple x86_64-apple-darwin9.0.0 -fsyntax-only -verify %s2// RUN: %clang_cc1 -x objective-c++ -std=c++11 -triple x86_64-apple-darwin9.0.0 -fsyntax-only -verify %s3// RUN: %clang_cc1 -x objective-c++ -std=c++03 -triple x86_64-apple-darwin9.0.0 -fsyntax-only -verify %s4 5#if !__has_feature(attribute_availability_with_version_underscores)6# error "missing feature"7#endif8 9@protocol P10- (void)proto_method __attribute__((availability(macosx,introduced=10_1,deprecated=10_2))); // expected-note 2 {{'proto_method' has been explicitly marked deprecated here}}11@end12 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@end23 24@interface B : A25- (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@end33 34void f(A *a, B *b) {35  [a method]; // expected-warning{{'method' is deprecated: first deprecated in macOS 10.2}}36  [b method]; // no-warning37  [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 a42// subclass where the redeclared method is not deprecated.43@interface C44- (void) method __attribute__((availability(macosx,introduced=10_1,deprecated=10_2))); // expected-note {{'method' has been explicitly marked deprecated here}}45@end46 47@interface D : C48- (void) method;49@end50 51@interface E : D52- (void) method;53@end54 55@implementation D56- (void) method {57  [super method]; // expected-warning {{'method' is deprecated: first deprecated in macOS 10.2}}58}59@end60 61@implementation E62- (void) method {63  [super method]; // no-warning64}65@end66 67@class NSMutableArray;68 69@interface NSDictionary70+ (instancetype)dictionaryWithObjectsAndKeys:(id)firstObject, ... __attribute__((sentinel(0,1)));71@end72 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@end83 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@end93 94@interface Mixed95- (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@end98 99@protocol P18804883100- (void)proto_method __attribute__((availability(macosx,introduced=10_1,deprecated=NA))); // means nothing (not deprecated)101@end102 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@end108 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