summaryrefslogtreecommitdiff
path: root/test/SemaObjCXX/fragile-abi-object-assign.m
diff options
context:
space:
mode:
Diffstat (limited to 'test/SemaObjCXX/fragile-abi-object-assign.m')
-rw-r--r--test/SemaObjCXX/fragile-abi-object-assign.m4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/SemaObjCXX/fragile-abi-object-assign.m b/test/SemaObjCXX/fragile-abi-object-assign.m
index 41f961d90f..953db6bbc0 100644
--- a/test/SemaObjCXX/fragile-abi-object-assign.m
+++ b/test/SemaObjCXX/fragile-abi-object-assign.m
@@ -1,4 +1,4 @@
-// RUN: %clang_cc1 -triple x86_64-apple-darwin11 -fsyntax-only -fobjc-fragile-abi -verify %s
+// RUN: %clang_cc1 -x objective-c++ -triple x86_64-apple-darwin11 -fsyntax-only -fobjc-fragile-abi -verify %s
// rdar://10731065
@interface MyView {}
@@ -7,7 +7,7 @@
@implementation MyViewTemplate // expected-warning {{cannot find interface declaration for 'MyViewTemplate'}}
- (id) createRealObject {
id realObj;
- *(MyView *) realObj = *(MyView *) self; // expected-error {{cannot assign to class object - use memcpy instead}}
+ *(MyView *) realObj = *(MyView *) self; // expected-error {{cannot assign to class object}}
}
@end