blob: 2308677ab825b7fa63ee57d4412f97414f4729a8 [file] [log] [blame]
Fariborz Jahanian1147c5e2009-12-14 17:36:25 +00001// RUN: clang -cc1 -fobjc-nonfragile-abi -verify -fsyntax-only %s
Fariborz Jahanian7f890472009-09-02 00:05:10 +00002
3@interface NSView
4 - (id)initWithView:(id)realView;
5@end
6
7@implementation NSView
8 - (id)initWithView:(id)realView {
9 *(NSView *)self = *(NSView *)realView; // expected-error {{indirection cannot be to an interface in non-fragile ABI}}
10 }
11@end
12