llvm-for-llvmta/test/tools/llvm-cov/Inputs/prevent_false_instantiation...

16 lines
164 B
C++
Raw Normal View History

2022-04-25 10:02:23 +02:00
#include "prevent_false_instantiations.h"
void func1() {
DO_SOMETHING();
}
void func2() {
DO_SOMETHING();
}
int main() {
func1();
func2();
return 0;
}