summaryrefslogtreecommitdiff
path: root/test/SemaObjC/attr-deprecated.m
diff options
context:
space:
mode:
authorFariborz Jahanian <fjahanian@apple.com>2014-07-28 16:35:45 +0000
committerFariborz Jahanian <fjahanian@apple.com>2014-07-28 16:35:45 +0000
commitda95110377b782df4640e6bce73c669b23b08599 (patch)
treec6b93321b817e662ec0c685b2afac33a38c70c34 /test/SemaObjC/attr-deprecated.m
parent61e498ab0ab83246216d2d0758ca39694e9da744 (diff)
downloadclang-da95110377b782df4640e6bce73c669b23b08599.tar.gz
Objective-C. Improve diagnostic when property is
not auto synthesized in current implementation. rdar://17774815 git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@214090 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/SemaObjC/attr-deprecated.m')
-rw-r--r--test/SemaObjC/attr-deprecated.m2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/SemaObjC/attr-deprecated.m b/test/SemaObjC/attr-deprecated.m
index f18f99f013..9c33b5bade 100644
--- a/test/SemaObjC/attr-deprecated.m
+++ b/test/SemaObjC/attr-deprecated.m
@@ -201,7 +201,7 @@ expected-note {{'setObject:' has been explicitly marked deprecated here}}
@end
@interface TestDerived : TestBase
-@property (nonatomic, strong) id object; //expected-warning {{auto property synthesis will not synthesize property 'object' because it will be synthesize by its super class}}
+@property (nonatomic, strong) id object; //expected-warning {{auto property synthesis will not synthesize property 'object' because it will be implemented by its superclass}}
@end
@interface TestUse @end