xref: /llvm-project/llvm/test/tools/llvm-cov/Inputs/multiple_objects/use_1.cc (revision 51d8f887db26815576af25c24c5c70b1b03b6830)
1 #define DEF
2 #include "header.h"
3 
main()4 int main() {
5   f1();
6 
7   int *x;
8   f2(&x);
9 
10   float *y;
11   f2(&y);
12 
13   return 0;
14 }
15