blob: 932827e61425bda3789781ebc3e277b31db055bb [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
10 obj = vv; // expected-error{{incompatible type assigning 'void *', expected 'XX *'}}
11}