forked from OSchip/llvm-project
6 lines
113 B
C
6 lines
113 B
C
|
// RUN: clang-cc -emit-pch -o variables.h.pch variables.h
|
||
|
extern int x;
|
||
|
extern float y;
|
||
|
extern int *ip;
|
||
|
float z;
|