llvm-for-llvmta/tools/clang/test/SemaObjCXX/fragile-abi-object-assign.m

14 lines
446 B
Mathematica
Raw Permalink Normal View History

2022-04-25 13:02:35 +02:00
// 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