[cfe-commits] r44966 - /cfe/trunk/test/Sema/conflicting-ivar-test-1.m
Fariborz Jahanian
fjahanian at apple.com
Wed Dec 12 16:16:34 PST 2007
Author: fjahanian
Date: Wed Dec 12 18:16:34 2007
New Revision: 44966
URL: http://llvm.org/viewvc/llvm-project?rev=44966&view=rev
Log:
Fixed test to match the new diagnostic text.
Modified:
cfe/trunk/test/Sema/conflicting-ivar-test-1.m
Modified: cfe/trunk/test/Sema/conflicting-ivar-test-1.m
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/Sema/conflicting-ivar-test-1.m?rev=44966&r1=44965&r2=44966&view=diff
==============================================================================
--- cfe/trunk/test/Sema/conflicting-ivar-test-1.m (original)
+++ cfe/trunk/test/Sema/conflicting-ivar-test-1.m Wed Dec 12 18:16:34 2007
@@ -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
More information about the cfe-commits
mailing list