summaryrefslogtreecommitdiffstats
path: root/test/SemaObjC/default-synthesize.m
diff options
context:
space:
mode:
authorTed Kremenek <kremenek@apple.com>2013-12-12 23:40:14 +0000
committerTed Kremenek <kremenek@apple.com>2013-12-12 23:40:14 +0000
commit5184f04d3cc445340846840042e2dc7756a509fe (patch)
tree3f685d49554ba6d4137c218f9332afb13b382f84 /test/SemaObjC/default-synthesize.m
parentff97893e710422195451c602f034a3d7ecccef16 (diff)
Enhance "auto synthesis will not synthesize property in protocol" to include property and protocol name.
Implements <rdar://problem/15617839>. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@197187 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 dd16c1361d..9356b9f5b3 100644
--- a/test/SemaObjC/default-synthesize.m
+++ b/test/SemaObjC/default-synthesize.m
@@ -136,5 +136,5 @@
@interface MyClass <MyProtocol>
@end
-@implementation MyClass // expected-warning {{auto property synthesis will not synthesize property declared in a protocol}}
+@implementation MyClass // expected-warning {{auto property synthesis will not synthesize property 'requiredString' declared in protocol 'MyProtocol'}}
@end