// header for codegen-extern-template.cpp #ifndef CODEGEN_EXTERN_TEMPLATE_H #define CODEGEN_EXTERN_TEMPLATE_H template inline T foo() { return 10; } extern template int foo(); inline int bar() { return foo(); } #endif