diff options
author | Daniel Dunbar <daniel@zuster.org> | 2008-08-27 05:41:04 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2008-08-27 05:41:04 +0000 |
commit | 8a7267ef413d84a907d178cee9eb32294cf6b13b (patch) | |
tree | 2f504a7d65160244295fc1b3564fc4afe1912887 | |
parent | b20ef3e3fbe0fabe213dc0149011e9f0d751a3a4 (diff) |
Update test case (we were missing a warning here)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@55408 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/SemaObjC/property-1.m | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/SemaObjC/property-1.m b/test/SemaObjC/property-1.m index 3bc2e3386b..6cdf8de021 100644 --- a/test/SemaObjC/property-1.m +++ b/test/SemaObjC/property-1.m @@ -22,7 +22,7 @@ @synthesize name; // OK! property with same name as an accessible ivar of same name @end -@implementation I(CAT) +@implementation I(CAT) // expected-warning {{incomplete implementation}}, expected-warning {{method definition for 'd1' not found}}, // expected-warning {{method definition for 'setD1:' not found}} @synthesize d1; // expected-error {{@synthesize not allowed in a category's implementation}} @dynamic bad; // expected-error {{property implementation must have its declaration in the category 'CAT'}} @end |