blob: a5283f92ad3edb67fbafaa6aa73fe614d7bb91f1 [file] [log] [blame]
Douglas Gregor2cf26342009-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}}
Douglas Gregor14f79002009-04-10 03:52:48 +00006// FIXME:variables.h expected-note{{previous}}
7double z; // expected-error{{redefinition}}
8
9//double VeryHappy; // FIXME: xpected-error{{redefinition}}
Douglas Gregor2cf26342009-04-09 22:27:44 +000010