forked from OSchip/llvm-project
parent
086ac11606
commit
f40183f436
|
@ -0,0 +1,12 @@
|
||||||
|
// RUN: clang-cc -triple x86_64-apple-darwin9 -verify -fsyntax-only %s
|
||||||
|
|
||||||
|
@interface NSView
|
||||||
|
- (id)initWithView:(id)realView;
|
||||||
|
@end
|
||||||
|
|
||||||
|
@implementation NSView
|
||||||
|
- (id)initWithView:(id)realView {
|
||||||
|
*(NSView *)self = *(NSView *)realView; // expected-error {{indirection cannot be to an interface in non-fragile ABI}}
|
||||||
|
}
|
||||||
|
@end
|
||||||
|
|
Loading…
Reference in New Issue