blob: 70dd394845ce1fda13502f829b7fc16c304592cf [file] [log] [blame]
Fariborz Jahaniana245f192012-06-23 18:39:57 +00001// RUN: %clang_cc1 -fsyntax-only -Wno-objc-root-class -verify %s
2// rdar://11618852
3
4@protocol TestProtocol
5- (void)newProtocolMethod;
Ted Kremenekb79ee572013-12-18 23:30:06 +00006- (void)deprecatedProtocolMethod __attribute__((deprecated)); // expected-note 2 {{'deprecatedProtocolMethod' has been explicitly marked deprecated here}}
Fariborz Jahaniana245f192012-06-23 18:39:57 +00007@end
8
9@interface NSObject @end
10
11@interface TestClass : NSObject <TestProtocol>
12
13- (void)newInstanceMethod;
Ted Kremenekb79ee572013-12-18 23:30:06 +000014- (void)deprecatedInstanceMethod __attribute__((deprecated)); // expected-note {{'deprecatedInstanceMethod' has been explicitly marked deprecated here}}
Fariborz Jahaniana245f192012-06-23 18:39:57 +000015
16@end
17
18int main(int argc, const char * argv[])
19{
20
21 TestClass *testObj = (TestClass*)0;
22 [testObj newInstanceMethod];
23 [testObj deprecatedInstanceMethod]; // expected-warning {{'deprecatedInstanceMethod' is deprecated}}
24
25 [testObj newProtocolMethod];
26 [testObj deprecatedProtocolMethod]; // expected-warning {{'deprecatedProtocolMethod' is deprecated}}
27
28 id <TestProtocol> testProto = testObj;
29 [testProto newProtocolMethod];
30 [testProto deprecatedProtocolMethod]; // expected-warning {{'deprecatedProtocolMethod' is deprecated}}
31 return 0;
32}