overload24.c

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

C
24
字号
// PRMS Id: 5124// Bug: g++ promotes bar to int* too soon and the call to f fails.// Build don't link:typedef int arr[1];struct A {   void f(void);   void f(arr &);   void g(void);   void g(int *);   void h(void);};void A::h(void){   arr bar;   f(bar);   g(bar);}

⌨️ 快捷键说明

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