xref: /llvm-project/compiler-rt/test/profile/Inputs/extern_template1.cpp (revision adbb7b7b574bf1d1f0b3f4e26adf6786979b2da1)
1 #define USE
2 #include "extern_template.h"
3 #undef USE
4 
5 Test<int> TO;
foo()6 int foo() {
7   TO.doIt(20);
8   return TO.M;
9 }
10