bolt/deps/llvm-18.1.8/clang/test/Modules/codegen-extern-template.h
2025-02-14 19:21:04 +01:00

12 lines
245 B
C++

// 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