diff options
author | Ted Kremenek <kremenek@apple.com> | 2010-03-15 18:47:29 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2010-03-15 18:47:29 +0000 |
commit | b5696fecb32744e1cd11dc064d8179717c22020e (patch) | |
tree | 0c6ef47c76bcc43f50f9d1b1d626a596d61785f4 | |
parent | 894ae6ad081465a3b168db7e60ab3f94e3730b57 (diff) |
Add 'expected-note'
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@98560 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/SemaObjC/duplicate-property.m | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/SemaObjC/duplicate-property.m b/test/SemaObjC/duplicate-property.m index fd9b68787c..bc1fe71a15 100644 --- a/test/SemaObjC/duplicate-property.m +++ b/test/SemaObjC/duplicate-property.m @@ -3,6 +3,6 @@ @interface Foo { id x; } -@property (nonatomic, retain) id x; +@property (nonatomic, retain) id x; // expected-note{{property declared here}} @property (nonatomic, retain) id x; // expected-error{{property has a previous declaration}} @end |