blob: 52510c84f139acab66881ff93fc5d62b94b967ec [file] [log] [blame]
Daniel Dunbara5728872009-12-15 20:14:24 +00001// RUN: %clang_cc1 -fsyntax-only -verify %s
Douglas Gregor50f4e702009-02-07 17:16:20 +00002
3// <rdar://problem/6463729>
4@class XX;
5
6void func() {
7 XX *obj;
8 void *vv;
9
Douglas Gregord4eea832010-04-09 00:35:39 +000010 obj = vv; // expected-error{{assigning to 'XX *' from incompatible type 'void *'}}
Douglas Gregor50f4e702009-02-07 17:16:20 +000011}