14139.c

来自「this is a gcc file, you can download it 」· C语言 代码 · 共 23 行

C
23
字号
// 981203 bkoz// g++/14309// test for global functions, mf's, and templatized mf's.// Build don't link: static int fooe_1(void) { return 5; }static int fooe_2(int x = fooe_1()) { return x; }struct antigua {  static int& foo_1();  static int foo_2(int& x = antigua::foo_1());  static int foo_3(int x = fooe_2());};template <typename T>  struct jamacia {    static int& foo_1();    static int foo_2(int& x = antigua::foo_1());    static int foo_3(int x = fooe_2());  };template class jamacia<int>;

⌨️ 快捷键说明

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