llvm-for-llvmta/tools/clang/test/Modules/codegen-extern-template.h

13 lines
245 B
C
Raw Normal View History

2022-04-25 13:02:35 +02:00
// 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