bolt/deps/llvm-18.1.8/clang/test/SemaObjCXX/fragile-abi-object-assign.m

13 lines
427 B
Mathematica
Raw Normal View History

2025-02-14 19:21:04 +01: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
@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