You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
446 B
14 lines
446 B
// 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
|
|
// rdar://10731065
|
|
|
|
@interface MyView {}
|
|
@end
|
|
|
|
@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}}
|
|
}
|
|
@end
|
|
|