explicit-instantiation3.c

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

C
32
字号
// { dg-do compile }// Origin: <sebor at roguewave dot com>// c++/8266: Explicit instantiation of a template outside its namespace is//  brokennamespace N{  template <class T> T foo (T)  { return T (); }  struct A  {    template <int N>    struct B {};  };  template <int M>  struct C {};  template double foo(double);  template float  foo<float>(float);  template struct A::B<0>;  template struct C<0>;}template int    N::foo(int);template char   N::foo<char>(char);template struct N::A::B<1>;template struct N::C<1>;

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?