nontype15.c

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

C
21
字号
struct foo {    typedef int (*fun)(int);  static int f(int);    // overload between static & non-static  int f();  static int g(int);    // non-overloaded static};template<foo::fun>struct f_obj {  // something ..};int foo::f() {  f_obj<f> f1;  f_obj<g> f2;  return 0; }

⌨️ 快捷键说明

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