aboutsummaryrefslogtreecommitdiff
path: root/test/SemaObjC/deref-interface.m
blob: 1c85918ed57ca6b5dbf274f46740f89238c226b0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
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