llvm-for-llvmta/tools/clang/test/SemaObjC/deref-interface.m

13 lines
289 B
Mathematica
Raw Permalink Normal View History

2022-04-25 13:02:35 +02:00
// RUN: %clang_cc1 -verify -fsyntax-only -Wno-objc-root-class %s
@interface NSView
- (id)initWithView:(id)realView;
@end
@implementation NSView
- (id)initWithView:(id)realView {
*(NSView *)self = *(NSView *)realView; // expected-error {{cannot assign to class object}}
}
@end