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