summaryrefslogtreecommitdiffstats
path: root/test/SemaObjC/default-synthesize.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/default-synthesize.m
parent61e498ab0ab83246216d2d0758ca39694e9da744 (diff)
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/default-synthesize.m')
-rw-r--r--test/SemaObjC/default-synthesize.m2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/SemaObjC/default-synthesize.m b/test/SemaObjC/default-synthesize.m
index a3abe2eca8..4865668af3 100644
--- a/test/SemaObjC/default-synthesize.m
+++ b/test/SemaObjC/default-synthesize.m
@@ -88,7 +88,7 @@
@end
@protocol TopProtocol
- @property (readonly) id myString; // expected-warning {{auto property synthesis will not synthesize property 'myString' because it will be synthesize by its super class}}
+ @property (readonly) id myString; // expected-warning {{auto property synthesis will not synthesize property 'myString' because it will be implemented by its superclass}}
@end
@interface TopClass <TopProtocol>