codegen-extern-template.h 245 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 // header for codegen-extern-template.cpp #ifndef CODEGEN_EXTERN_TEMPLATE_H #define CODEGEN_EXTERN_TEMPLATE_H template <typename T> inline T foo() { return 10; } extern template int foo<int>(); inline int bar() { return foo<int>(); } #endif