blob: 1d6ed01deaf8d82aa3cbfbc95205e411d6b3284f [file] [log] [blame]
John McCalld1e40d52011-10-02 01:16:38 +00001// RUN: %clang_cc1 -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 {
Fariborz Jahanian466f45a2012-01-24 19:40:13 +00009 *(NSView *)self = *(NSView *)realView; // expected-error {{cannot assign to class object}}
Fariborz Jahanian7f890472009-09-02 00:05:10 +000010 }
11@end
12