diff options
Diffstat (limited to 'test/SemaObjCXX/objc-container-subscripting.mm')
-rw-r--r-- | test/SemaObjCXX/objc-container-subscripting.mm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/SemaObjCXX/objc-container-subscripting.mm b/test/SemaObjCXX/objc-container-subscripting.mm index ccbc45e3b4..7591c3b098 100644 --- a/test/SemaObjCXX/objc-container-subscripting.mm +++ b/test/SemaObjCXX/objc-container-subscripting.mm @@ -32,8 +32,8 @@ template void test_dictionary_subscripts(NSMutableDictionary*, id, int); // expe template<typename T, typename U, typename O> void test_array_subscripts(T base, U index, O obj) { - base[index] = obj; // expected-error {{expected method to write dictionary element not found on object of type 'NSMutableArray *'}} - obj = base[index]; // expected-error {{expected method to read dictionary element not found on object of type 'NSMutableArray *'}} + base[index] = obj; // expected-error {{indexing expression is invalid because subscript type 'double' is not an intergal or objective-C pointer type}} + obj = base[index]; // expected-error {{indexing expression is invalid because subscript type 'double' is not an intergal or objective-C pointer type}} } template void test_array_subscripts(NSMutableArray *, int, id); |