mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-25 18:16:04 +00:00

This reverts commit d618f1c3b12effd0c2bdb7d02108d3551f389d3d. This commit wasn't reviewed ahead of time and significant concerns were raised immediately after it landed. According to our developer policy this warrants immediate revert of the commit. https://llvm.org/docs/DeveloperPolicy.html#patch-reversion-policy Differential Revision: https://reviews.llvm.org/D155509
21 lines
682 B
Objective-C
21 lines
682 B
Objective-C
// RUN: %clang_cc1 -fsyntax-only -verify %s
|
|
// rdar://12958878
|
|
|
|
@interface NSObject @end
|
|
|
|
@protocol DVTInvalidation
|
|
- (void)invalidate; // expected-note {{method 'invalidate' declared here}}
|
|
@property int Prop; // expected-note {{property declared here}}
|
|
@end
|
|
|
|
|
|
|
|
@protocol DVTInvalidation;
|
|
|
|
@interface IBImageCatalogDocument : NSObject <DVTInvalidation>
|
|
@end
|
|
|
|
@implementation IBImageCatalogDocument // expected-warning {{auto property synthesis will not synthesize property 'Prop' declared in protocol 'DVTInvalidation'}} \
|
|
// expected-warning {{method 'invalidate' in protocol 'DVTInvalidation' not implemented}}
|
|
@end // expected-note {{add a '@synthesize' directive}}
|