blob: aad40ceb91629d52636316cb68f5dcda5e67ea29 [file] [log] [blame]
// RUN: clang-cc -emit-pch -triple=i686-apple-darwin9 -o %t %S/variables.h &&
// RUN: clang-cc -triple=i686-apple-darwin9 -include-pch %t -fsyntax-only -verify %s
int *ip2 = &x;
float *fp = &ip; // expected-warning{{incompatible pointer types}}
// FIXME:variables.h expected-note{{previous}}
double z; // expected-error{{redefinition}}
//double VeryHappy; // FIXME: xpected-error{{redefinition}}
int Q = A_MACRO_IN_THE_PCH;