blob: 910cda5f07d148071cbd93c658cb6dfa56e1c5e0 [file] [log] [blame]
Douglas Gregorc2e3d5c2012-12-11 18:53:07 +00001// RUN: %clang_cc1 -triple x86_64-apple-darwin9 -fsyntax-only -verify -Wno-objc-root-class %s
Ted Kremenek05e63e02011-02-14 23:59:16 +00002
3@interface I
Ted Kremenek65d63572013-03-27 00:02:21 +00004- Meth; // expected-note 2 {{method 'Meth' declared here}}
Douglas Gregorc2e3d5c2012-12-11 18:53:07 +00005- unavailableMeth __attribute__((availability(macosx,unavailable)));
6- unavailableMeth2 __attribute__((unavailable));
Ted Kremenek05e63e02011-02-14 23:59:16 +00007@end
8
Ted Kremenek65d63572013-03-27 00:02:21 +00009@implementation I // expected-warning {{method definition for 'Meth' not found}}
Ted Kremenek05e63e02011-02-14 23:59:16 +000010@end
11
12@implementation I(CAT)
Fariborz Jahanian9f8b19e2011-07-28 23:19:50 +000013- Meth {return 0;} // expected-warning {{category is implementing a method which will also be implemented by its primary class}}
Ted Kremenek05e63e02011-02-14 23:59:16 +000014@end
15
Erik Pilkingtonecce5c92018-07-07 01:50:20 +000016// rdar://40634455
17@interface MyClass
18-(void)mymeth __attribute__((availability(macos, introduced=100))); // expected-note{{here}}
19@end
20@implementation MyClass // expected-warning{{'mymeth' not found}}
21@end
22
Ted Kremenek05e63e02011-02-14 23:59:16 +000023#pragma GCC diagnostic ignored "-Wincomplete-implementation"
24@interface I2
Ted Kremenek59b10db2012-02-27 22:55:11 +000025- Meth; // expected-note{{method 'Meth' declared here}}
Ted Kremenek05e63e02011-02-14 23:59:16 +000026@end
27
28@implementation I2
29@end
30
31@implementation I2(CAT)
Fariborz Jahanian9f8b19e2011-07-28 23:19:50 +000032- Meth {return 0;} // expected-warning {{category is implementing a method which will also be implemented by its primary class}}
Ted Kremenek05e63e02011-02-14 23:59:16 +000033@end
34
Argyrios Kyrtzidisa9aabf72011-10-27 00:09:34 +000035@interface Q
36@end
37
38// rdar://10336158
39@implementation Q
40
41__attribute__((visibility("default")))
Argyrios Kyrtzidis822c4332012-03-23 23:24:23 +000042@interface QN // expected-error {{Objective-C declarations may only appear in global scope}}
Argyrios Kyrtzidisa9aabf72011-10-27 00:09:34 +000043{
44}
45@end
46
47@end
Ted Kremenek05e63e02011-02-14 23:59:16 +000048
Fariborz Jahanianf3077a22013-12-05 20:52:31 +000049// rdar://15580969
50typedef char BOOL;
51
52@protocol NSObject
53- (BOOL)isEqual:(id)object;
54@end
55
56@interface NSObject <NSObject>
57@end
58
59@protocol NSApplicationDelegate <NSObject>
60- (void)ImpleThisMethod; // expected-note {{method 'ImpleThisMethod' declared here}}
61@end
62
63@interface AppDelegate : NSObject <NSApplicationDelegate>
64@end
65
66@implementation AppDelegate (MRRCategory)
67
68- (BOOL)isEqual:(id)object
69{
70 return __objc_no;
71}
72
73- (void)ImpleThisMethod {} // expected-warning {{category is implementing a method which will also be implemented by its primary class}}
74@end