summaryrefslogtreecommitdiffstats
path: root/test/SemaObjCXX/void_to_obj.mm
blob: 52510c84f139acab66881ff93fc5d62b94b967ec (plain)
1
2
3
4
5
6
7
8
9
10
11
// RUN: %clang_cc1 -fsyntax-only -verify %s

// <rdar://problem/6463729>
@class XX;

void func() {
  XX *obj;
  void *vv;

  obj = vv; // expected-error{{assigning to 'XX *' from incompatible type 'void *'}}
}
OpenPOWER on IntegriCloud