blob: bd2ef147bde9bcb01411dcd89ffb1966935a1dae [file] [log] [blame]
Douglas Gregor50f4e702009-02-07 17:16:20 +00001// RUN: clang -fsyntax-only -verify %s
2
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}