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

10 lines
119 B
C++

#include "abs.h"
#include "extra/dec.h"
#include "extra/inc.h"
int main() {
int x = 0;
inc(x);
return abs(x);
}