brintos

brintos / llvm-project-archived public Read only

0
0
Text · 245 B · 56ee036 Raw
13 lines · c
1// header for codegen-extern-template.cpp2#ifndef CODEGEN_EXTERN_TEMPLATE_H3#define CODEGEN_EXTERN_TEMPLATE_H4 5template <typename T>6inline T foo() { return 10; }7 8extern template int foo<int>();9 10inline int bar() { return foo<int>(); }11 12#endif13