linux-packaging-mono/external/llvm/test/tools/llvm-cov/Inputs/prevent_false_instantiations.cpp

16 lines
164 B
C++
Raw Normal View History

#include "prevent_false_instantiations.h"
void func1() {
DO_SOMETHING();
}
void func2() {
DO_SOMETHING();
}
int main() {
func1();
func2();
return 0;
}