blob: 851ecf5db666527baf9cd165d42267ec4eebf318 [file] [log] [blame]
Fariborz Jahanian854a4eb2009-12-14 17:43:07 +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
10 obj = vv; // expected-error{{incompatible type assigning 'void *', expected 'XX *'}}
11}