900208_03.c

来自「Mac OS X 10.4.9 for x86 Source Code gcc」· C语言 代码 · 共 20 行

C
20
字号
// { dg-do assemble  }// g++ 1.36.1 bug 900208_03// The Cfront 2.0 reference manual (5.3.3) says "This type must be an// object type; functions cannot be allocated this way...".// g++ fails to detect (at compile time) cases where an attempt is made to// allocate a function using new.// keywords: operator new, function typestypedef void (func_type) ();void global_function_0 (){  new func_type;	// { dg-error "" } missed by both cfront 2.0 and g++ 1.36.1}int main () { return 0; }

⌨️ 快捷键说明

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