aboutsummaryrefslogtreecommitdiff
path: root/clang/test/SemaObjC
diff options
context:
space:
mode:
authorFahad Nayyar <f_nayyar@apple.com>2022-11-22 13:26:21 +0000
committerEgor Zhdan <e_zhdan@apple.com>2022-11-22 13:26:40 +0000
commitcdfb65e5e7182a02005b3611aa28288890b9e296 (patch)
tree8057b1c3789c83bfca991d97403a54ecd63f417e /clang/test/SemaObjC
parent470aea5ed403d43b68e2ffdbec451d79913eb15d (diff)
downloadllvm-cdfb65e5e7182a02005b3611aa28288890b9e296.zip
llvm-cdfb65e5e7182a02005b3611aa28288890b9e296.tar.gz
llvm-cdfb65e5e7182a02005b3611aa28288890b9e296.tar.bz2
[Clang][Sema] Added space after ',' in a warning
This change fixes a typo in a warning message. rdar://79707705
Diffstat (limited to 'clang/test/SemaObjC')
-rw-r--r--clang/test/SemaObjC/atomic-property-synthesis-rules.m2
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/SemaObjC/atomic-property-synthesis-rules.m b/clang/test/SemaObjC/atomic-property-synthesis-rules.m
index c7fac7b..c7f023e 100644
--- a/clang/test/SemaObjC/atomic-property-synthesis-rules.m
+++ b/clang/test/SemaObjC/atomic-property-synthesis-rules.m
@@ -108,7 +108,7 @@
// read-write - might warn
@property int GetSet;
@property int Get; // expected-note {{property declared here}} \
- // expected-note {{setter and getter must both be synthesized}}
+ // expected-note {{setter and getter must both be synthesized, or both be user defined, or the property must be nonatomic}}
@property int Set; // expected-note {{property declared here}} \
// expected-note {{setter and getter must both be synthesized}}
@property int None;