Files
clang-p2996/llvm/test/tools/llvm-cov/Inputs/coverage_prefix_map/main.cc
Keith Smiley b5da3120b8 [llvm-cov][NFC] Add test for coverage-prefix-map remappings
This test covers acts as a regression test for these fixes:

c75a0a1e9d
dd388ba3e0

Differential Revision: https://reviews.llvm.org/D108805
2021-08-30 17:19:57 -07:00

10 lines
76 B
C++

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