instantiate5.c

来自「用于进行gcc测试」· C语言 代码 · 共 14 行

C
14
字号
// { dg-do link  }// { dg-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 + -
显示快捷键?