xref: /minix3/external/bsd/llvm/dist/clang/test/SemaObjCXX/fragile-abi-object-assign.m (revision f4a2713ac843a11c696ec80c0a5e3e5d80b4d338)
1*f4a2713aSLionel Sambuc// RUN: %clang_cc1 -x objective-c++ -triple x86_64-apple-darwin11 -fsyntax-only -fobjc-runtime=macosx-fragile-10.5 -verify -Wno-objc-root-class %s
2*f4a2713aSLionel Sambuc// rdar://10731065
3*f4a2713aSLionel Sambuc
4*f4a2713aSLionel Sambuc@interface MyView {}
5*f4a2713aSLionel Sambuc@end
6*f4a2713aSLionel Sambuc
7*f4a2713aSLionel Sambuc@implementation MyViewTemplate // expected-warning {{cannot find interface declaration for 'MyViewTemplate'}}
8*f4a2713aSLionel Sambuc- (id) createRealObject {
9*f4a2713aSLionel Sambuc  id realObj;
10*f4a2713aSLionel Sambuc  *(MyView *) realObj = *(MyView *) self; // expected-error {{cannot assign to class object}}
11*f4a2713aSLionel Sambuc}
12*f4a2713aSLionel Sambuc@end
13*f4a2713aSLionel Sambuc
14