Test for my last patch.

llvm-svn: 80740
This commit is contained in:
Fariborz Jahanian 2009-09-02 00:05:10 +00:00
parent 086ac11606
commit f40183f436
1 changed files with 12 additions and 0 deletions

View File

@ -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