blob: 2981a6796a73122861edb75c619ad4a2c3dd4975 [file] [log] [blame]
Douglas Gregoref84c4b2009-04-09 22:27:44 +00001// RUN: clang-cc -emit-pch -o %t %S/variables.h &&
2// RUN: clang-cc -include-pch %t -fsyntax-only -verify %s
3
4int *ip2 = &x;
5float *fp = &ip; // expected-warning{{incompatible pointer types}}
6