900121_01.c

来自「gcc-you can use this code to learn somet」· C语言 代码 · 共 17 行

C
17
字号
// g++ 1.36.1 bug 900121_01// The following file causes g++ 1.36.1 (and 1.36.2) to abort.// Cfront 2.0 passes this test.// keywords: abort, incomplete types, reference types, formal parametersstruct s0;              // ERROR - forward declarationvoid function (struct s0 &arg1, struct s0 &arg2){  arg1 = arg2;		// ERROR - causes abort}int main () { return 0; }

⌨️ 快捷键说明

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