xref: /llvm-project/llvm/test/tools/llvm-cov/Inputs/coverage_prefix_map/main.cc (revision b5da3120b8ca99ad626af937eff0509ffa8e3440)
1*b5da3120SKeith Smiley #include "bar.h"
2*b5da3120SKeith Smiley 
foo()3*b5da3120SKeith Smiley int foo() {
4*b5da3120SKeith Smiley   return 1;
5*b5da3120SKeith Smiley }
6*b5da3120SKeith Smiley 
main()7*b5da3120SKeith Smiley int main() {
8*b5da3120SKeith Smiley   return bar();
9*b5da3120SKeith Smiley }
10