teak-llvm/clang/test/Index/Inputs/preamble.h
Douglas Gregor d9a30af25b When using a precompiled preamble, save the diagnostics produced when
creating the preamble and "replay" them when reusing the
preamble. Also, fix a thinko in the copying of the preamble when
building the precompiled preamble.

llvm-svn: 110061
2010-08-02 20:51:39 +00:00

7 lines
83 B
C

inline int bar(int i) {
int *ptr = 0;
float *ptr1;
ptr = ptr1;
return 0;
}