diff options
author | Fariborz Jahanian <fjahanian@apple.com> | 2007-12-13 00:16:34 +0000 |
---|---|---|
committer | Fariborz Jahanian <fjahanian@apple.com> | 2007-12-13 00:16:34 +0000 |
commit | 4319b8437d3262981ba784486e37a768eaa643d7 (patch) | |
tree | 1d57a7d6e0d7103d90994b215d463778a59430cc | |
parent | 79a99f2c063ce7cd9b18852a39bf4c937fc1faf8 (diff) |
Fixed test to match the new diagnostic text.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@44966 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/Sema/conflicting-ivar-test-1.m | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/Sema/conflicting-ivar-test-1.m b/test/Sema/conflicting-ivar-test-1.m index 7d9cdb6223..6f24e8cb3a 100644 --- a/test/Sema/conflicting-ivar-test-1.m +++ b/test/Sema/conflicting-ivar-test-1.m @@ -21,7 +21,7 @@ { @public int IVAR; - int IVAR1; // expected-error {{inconsistent instance variable specification}} + int IVAR1; // expected-error {{inconsistent number of instance variables specified}} } @end @@ -46,7 +46,7 @@ @private int IVAR; - int IVAR1; // expected-error {{inconsistent instance variable specification}} + int IVAR1; // expected-error {{inconsistent number of instance variables specified}} } @end |