instantiate5.c
来自「gcc-you can use this code to learn somet」· C语言 代码 · 共 15 行
C
15 行
// Build don't run:// Additional sources: instantiate5.cc instantiate5-main.cc// `global constructors' are given the same name, based on foo(), on// both translation units, which is wrong, because it must be possible// to define template functions in multiple translation units, as long// as they're given the same definition// simplified from test case submitted by Daniel X. Pape <dpape@canis.uiuc.edu>template <class T> void foo() { }inline int bar() { foo<void>(); return 1; }static int i = bar();
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?