llvm-for-llvmta/test/tools/llvm-cov/Inputs/multiple_objects/use_2.cc

21 lines
161 B
C++
Raw Normal View History

2022-04-25 10:02:23 +02:00
#undef DEF
#include "header.h"
static int foo() {
return 0;
}
int main() {
f1();
long *x;
f2(&x);
double *y;
f2(&y);
f3();
return foo();
}