2011-09-24 04:28:32 +08:00
|
|
|
// RUN: %clang_cc1 -triple x86_64-apple-darwin9.0.0 -fsyntax-only -verify %s
|
2015-03-20 03:18:22 +08:00
|
|
|
// RUN: %clang_cc1 -D WARN_PARTIAL -Wpartial-availability -triple x86_64-apple-darwin9.0.0 -fsyntax-only -verify %s
|
2012-04-24 04:30:52 +08:00
|
|
|
|
|
|
|
@protocol P
|
2013-12-19 07:30:06 +08:00
|
|
|
- (void)proto_method __attribute__((availability(macosx,introduced=10.1,deprecated=10.2))); // expected-note 2 {{'proto_method' has been explicitly marked deprecated here}}
|
2015-03-20 03:18:22 +08:00
|
|
|
|
|
|
|
#if defined(WARN_PARTIAL)
|
|
|
|
// expected-note@+2 2 {{'partial_proto_method' has been explicitly marked partial here}}
|
|
|
|
#endif
|
|
|
|
- (void)partial_proto_method __attribute__((availability(macosx,introduced=10.8)));
|
2012-04-24 04:30:52 +08:00
|
|
|
@end
|
|
|
|
|
|
|
|
@interface A <P>
|
2013-12-19 07:30:06 +08:00
|
|
|
- (void)method __attribute__((availability(macosx,introduced=10.1,deprecated=10.2))); // expected-note {{'method' has been explicitly marked deprecated here}}
|
2015-03-20 03:18:22 +08:00
|
|
|
#if defined(WARN_PARTIAL)
|
|
|
|
// expected-note@+2 {{'partialMethod' has been explicitly marked partial here}}
|
|
|
|
#endif
|
|
|
|
- (void)partialMethod __attribute__((availability(macosx,introduced=10.8)));
|
2013-01-16 06:43:08 +08:00
|
|
|
|
|
|
|
- (void)overridden __attribute__((availability(macosx,introduced=10.3))); // expected-note{{overridden method is here}}
|
|
|
|
- (void)overridden2 __attribute__((availability(macosx,introduced=10.3)));
|
|
|
|
- (void)overridden3 __attribute__((availability(macosx,deprecated=10.3)));
|
|
|
|
- (void)overridden4 __attribute__((availability(macosx,deprecated=10.3))); // expected-note{{overridden method is here}}
|
2013-01-16 08:54:48 +08:00
|
|
|
- (void)overridden5 __attribute__((availability(macosx,unavailable)));
|
|
|
|
- (void)overridden6 __attribute__((availability(macosx,introduced=10.3))); // expected-note{{overridden method is here}}
|
2011-09-24 04:23:42 +08:00
|
|
|
@end
|
|
|
|
|
2012-06-06 05:14:46 +08:00
|
|
|
// rdar://11475360
|
2011-09-24 04:23:42 +08:00
|
|
|
@interface B : A
|
2013-04-06 08:34:27 +08:00
|
|
|
- (void)method; // NOTE: we expect 'method' to *not* inherit availability.
|
2015-03-20 03:18:22 +08:00
|
|
|
- (void)partialMethod; // Likewise.
|
2013-01-16 06:43:08 +08:00
|
|
|
- (void)overridden __attribute__((availability(macosx,introduced=10.4))); // expected-warning{{overriding method introduced after overridden method on OS X (10.4 vs. 10.3)}}
|
|
|
|
- (void)overridden2 __attribute__((availability(macosx,introduced=10.2)));
|
|
|
|
- (void)overridden3 __attribute__((availability(macosx,deprecated=10.4)));
|
|
|
|
- (void)overridden4 __attribute__((availability(macosx,deprecated=10.2))); // expected-warning{{overriding method deprecated before overridden method on OS X (10.3 vs. 10.2)}}
|
2013-01-16 08:54:48 +08:00
|
|
|
- (void)overridden5 __attribute__((availability(macosx,introduced=10.3)));
|
|
|
|
- (void)overridden6 __attribute__((availability(macosx,unavailable))); // expected-warning{{overriding method cannot be unavailable on OS X when its overridden method is available}}
|
2011-09-24 04:23:42 +08:00
|
|
|
@end
|
|
|
|
|
|
|
|
void f(A *a, B *b) {
|
2012-10-02 02:42:25 +08:00
|
|
|
[a method]; // expected-warning{{'method' is deprecated: first deprecated in OS X 10.2}}
|
2013-04-06 08:34:27 +08:00
|
|
|
[b method]; // no-warning
|
2012-10-02 02:42:25 +08:00
|
|
|
[a proto_method]; // expected-warning{{'proto_method' is deprecated: first deprecated in OS X 10.2}}
|
|
|
|
[b proto_method]; // expected-warning{{'proto_method' is deprecated: first deprecated in OS X 10.2}}
|
2015-03-20 03:18:22 +08:00
|
|
|
|
|
|
|
#if defined(WARN_PARTIAL)
|
|
|
|
// expected-warning@+2 {{'partialMethod' is partial: introduced in OS X 10.8}} expected-note@+2 {{explicitly redeclare 'partialMethod' to silence this warning}}
|
|
|
|
#endif
|
|
|
|
[a partialMethod];
|
|
|
|
[b partialMethod]; // no warning
|
|
|
|
#if defined(WARN_PARTIAL)
|
|
|
|
// expected-warning@+2 {{'partial_proto_method' is partial: introduced in OS X 10.8}} expected-note@+2 {{explicitly redeclare 'partial_proto_method' to silence this warning}}
|
|
|
|
#endif
|
|
|
|
[a partial_proto_method];
|
|
|
|
#if defined(WARN_PARTIAL)
|
|
|
|
// expected-warning@+2 {{'partial_proto_method' is partial: introduced in OS X 10.8}} expected-note@+2 {{explicitly redeclare 'partial_proto_method' to silence this warning}}
|
|
|
|
#endif
|
|
|
|
[b partial_proto_method];
|
|
|
|
}
|
|
|
|
|
|
|
|
@interface A (NewAPI)
|
|
|
|
- (void)partialMethod;
|
|
|
|
- (void)partial_proto_method;
|
|
|
|
@end
|
|
|
|
|
|
|
|
void f_after_redecl(A *a, B *b) {
|
|
|
|
[a partialMethod]; // no warning
|
|
|
|
[b partialMethod]; // no warning
|
|
|
|
[a partial_proto_method]; // no warning
|
|
|
|
[b partial_proto_method]; // no warning
|
2011-09-24 04:23:42 +08:00
|
|
|
}
|
2013-04-09 07:39:32 +08:00
|
|
|
|
|
|
|
// Test case for <rdar://problem/11627873>. Warn about
|
|
|
|
// using a deprecated method when that method is re-implemented in a
|
|
|
|
// subclass where the redeclared method is not deprecated.
|
|
|
|
@interface C
|
2013-12-19 07:30:06 +08:00
|
|
|
- (void) method __attribute__((availability(macosx,introduced=10.1,deprecated=10.2))); // expected-note {{'method' has been explicitly marked deprecated here}}
|
2013-04-09 07:39:32 +08:00
|
|
|
@end
|
|
|
|
|
|
|
|
@interface D : C
|
|
|
|
- (void) method;
|
|
|
|
@end
|
|
|
|
|
|
|
|
@interface E : D
|
|
|
|
- (void) method;
|
|
|
|
@end
|
|
|
|
|
|
|
|
@implementation D
|
|
|
|
- (void) method {
|
|
|
|
[super method]; // expected-warning {{'method' is deprecated: first deprecated in OS X 10.2}}
|
|
|
|
}
|
|
|
|
@end
|
|
|
|
|
|
|
|
@implementation E
|
|
|
|
- (void) method {
|
|
|
|
[super method]; // no-warning
|
|
|
|
}
|
|
|
|
@end
|
|
|
|
|
2014-08-22 01:06:57 +08:00
|
|
|
// rdar://18059669
|
|
|
|
@class NSMutableArray;
|
|
|
|
|
|
|
|
@interface NSDictionary
|
|
|
|
+ (instancetype)dictionaryWithObjectsAndKeys:(id)firstObject, ... __attribute__((sentinel(0,1)));
|
|
|
|
@end
|
|
|
|
|
|
|
|
@class NSString;
|
|
|
|
|
|
|
|
extern NSString *NSNibTopLevelObjects __attribute__((availability(macosx,introduced=10.0 ,deprecated=10.8,message="" )));
|
|
|
|
id NSNibOwner, topNibObjects;
|
|
|
|
|
|
|
|
@interface AppDelegate (SIEImport) // expected-error {{cannot find interface declaration for 'AppDelegate'}}
|
|
|
|
|
|
|
|
-(void)__attribute__((ibaction))importFromSIE:(id)sender;
|
|
|
|
|
|
|
|
@end
|
|
|
|
|
|
|
|
@implementation AppDelegate (SIEImport) // expected-error {{cannot find interface declaration for 'AppDelegate'}}
|
|
|
|
|
|
|
|
-(void)__attribute__((ibaction))importFromSIE:(id)sender {
|
|
|
|
|
|
|
|
NSMutableArray *topNibObjects;
|
|
|
|
NSDictionary *nibLoadDict = [NSDictionary dictionaryWithObjectsAndKeys:self, NSNibOwner, topNibObjects, NSNibTopLevelObjects, ((void *)0)];
|
|
|
|
}
|
|
|
|
|
|
|
|
@end
|
2015-03-20 03:18:22 +08:00
|
|
|
|
|
|
|
@protocol PartialProt
|
|
|
|
- (void)ppartialMethod __attribute__((availability(macosx,introduced=10.8)));
|
|
|
|
+ (void)ppartialMethod __attribute__((availability(macosx,introduced=10.8)));
|
|
|
|
@end
|
|
|
|
|
|
|
|
@interface PartialI <PartialProt>
|
|
|
|
- (void)partialMethod __attribute__((availability(macosx,introduced=10.8)));
|
|
|
|
+ (void)partialMethod __attribute__((availability(macosx,introduced=10.8)));
|
|
|
|
@end
|
|
|
|
|
|
|
|
@interface PartialI ()
|
|
|
|
- (void)ipartialMethod1 __attribute__((availability(macosx,introduced=10.8)));
|
|
|
|
#if defined(WARN_PARTIAL)
|
|
|
|
// expected-note@+2 {{'ipartialMethod2' has been explicitly marked partial here}}
|
|
|
|
#endif
|
|
|
|
- (void)ipartialMethod2 __attribute__((availability(macosx,introduced=10.8)));
|
|
|
|
+ (void)ipartialMethod1 __attribute__((availability(macosx,introduced=10.8)));
|
|
|
|
#if defined(WARN_PARTIAL)
|
|
|
|
// expected-note@+2 {{'ipartialMethod2' has been explicitly marked partial here}}
|
|
|
|
#endif
|
|
|
|
+ (void)ipartialMethod2 __attribute__((availability(macosx,introduced=10.8)));
|
|
|
|
@end
|
|
|
|
|
|
|
|
@interface PartialI (Redecls)
|
|
|
|
- (void)partialMethod;
|
|
|
|
- (void)ipartialMethod1;
|
|
|
|
- (void)ppartialMethod;
|
|
|
|
+ (void)partialMethod;
|
|
|
|
+ (void)ipartialMethod1;
|
|
|
|
+ (void)ppartialMethod;
|
|
|
|
@end
|
|
|
|
|
|
|
|
void partialfun(PartialI* a) {
|
|
|
|
[a partialMethod]; // no warning
|
|
|
|
[a ipartialMethod1]; // no warning
|
|
|
|
#if defined(WARN_PARTIAL)
|
|
|
|
// expected-warning@+2 {{'ipartialMethod2' is partial: introduced in OS X 10.8}} expected-note@+2 {{explicitly redeclare 'ipartialMethod2' to silence this warning}}
|
|
|
|
#endif
|
|
|
|
[a ipartialMethod2];
|
|
|
|
[a ppartialMethod]; // no warning
|
|
|
|
[PartialI partialMethod]; // no warning
|
|
|
|
[PartialI ipartialMethod1]; // no warning
|
|
|
|
#if defined(WARN_PARTIAL)
|
|
|
|
// expected-warning@+2 {{'ipartialMethod2' is partial: introduced in OS X 10.8}} expected-note@+2 {{explicitly redeclare 'ipartialMethod2' to silence this warning}}
|
|
|
|
#endif
|
|
|
|
[PartialI ipartialMethod2];
|
|
|
|
[PartialI ppartialMethod]; // no warning
|
|
|
|
}
|
|
|
|
|
|
|
|
#if defined(WARN_PARTIAL)
|
|
|
|
// expected-note@+2 {{'PartialI2' has been explicitly marked partial here}}
|
|
|
|
#endif
|
|
|
|
__attribute__((availability(macosx, introduced = 10.8))) @interface PartialI2
|
|
|
|
@end
|
|
|
|
|
|
|
|
#if defined(WARN_PARTIAL)
|
|
|
|
// expected-warning@+2 {{'PartialI2' is partial: introduced in OS X 10.8}} expected-note@+2 {{explicitly redeclare 'PartialI2' to silence this warning}}
|
|
|
|
#endif
|
|
|
|
void partialinter1(PartialI2* p) {
|
|
|
|
}
|
|
|
|
|
|
|
|
@class PartialI2;
|
|
|
|
|
|
|
|
void partialinter2(PartialI2* p) { // no warning
|
|
|
|
}
|