blob: 932827e61425bda3789781ebc3e277b31db055bb [file] [log] [blame]
// RUN: %clang_cc1 -fsyntax-only -verify %s
// <rdar://problem/6463729>
@class XX;
void func() {
XX *obj;
void *vv;
obj = vv; // expected-error{{incompatible type assigning 'void *', expected 'XX *'}}
}