900519_06.c

来自「xml大全 可读写调用率很高 xml大全 可读写调用率很高」· C语言 代码 · 共 24 行

C
24
字号
// { dg-do assemble  }// g++ 1.37.1 bug 900519_06// g++ allows the type given in an invocation of operator new to be a// reference type.// Since pointers to reference types are illegal, the required return type// from such an invocation (of operator new) is illegal, and thus (it seems)// the entire call to new should be treated as being illegal.typedef int& int_ref;void test (int n){  new int&;		// { dg-error "" } missed  new int_ref;		// { dg-error "" } missed  new int&[n];		// { dg-error "" } missed  new int_ref[n];	// { dg-error "" } missed  new int&[3];		// { dg-error "" } missed  new int_ref[3];	// { dg-error "" } missed}int main () { return 0; }

⌨️ 快捷键说明

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