blob: aad40ceb91629d52636316cb68f5dcda5e67ea29 [file] [log] [blame]
Douglas Gregor8038d512009-04-10 17:25:41 +00001// RUN: clang-cc -emit-pch -triple=i686-apple-darwin9 -o %t %S/variables.h &&
2// RUN: clang-cc -triple=i686-apple-darwin9 -include-pch %t -fsyntax-only -verify %s
Douglas Gregor2cf26342009-04-09 22:27:44 +00003
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
Chris Lattner531cc832009-04-10 22:13:17 +000011
12int Q = A_MACRO_IN_THE_PCH;
13