addrfunc3.c

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

C
15
字号
// { dg-do run  }// { dg-options "-fpermissive -w" }// Test for overload resolution in comparison expressions.// Contributed by Jason Merrill <jason@cygnus.com>.void f (int) { }void f ();int main () {  void (*p)(int);  p = f;  if (p != f)    return 1;}

⌨️ 快捷键说明

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