llvm-project/llvm/test/tools/llvm-cov/Inputs/coverage_prefix_map/main.cc

10 lines
76 B
C++

#include "bar.h"
int foo() {
return 1;
}
int main() {
return bar();
}