llvm-for-llvmta/test/tools/llvm-cov/Inputs/multiple_objects/use_2.cc
Nils Hölscher 3500bf8dde first commit
2022-04-25 10:02:23 +02:00

21 lines
161 B
C++

#undef DEF
#include "header.h"
static int foo() {
return 0;
}
int main() {
f1();
long *x;
f2(&x);
double *y;
f2(&y);
f3();
return foo();
}