900406_02.c

来自「俄罗斯高人Mamaich的Pocket gcc编译器(运行在PocketPC上)」· C语言 代码 · 共 26 行

C
26
字号
// g++ bug 900406_02// g++ fails to correctly parse some type specifications within casts.// This results in incorrect errors being issued.// These errors are not issued for identical code by either cfront or// by gcc.// cfront 2.0 passes this test.// keywords: syntax, array types, castsint (*ipp)[];int (**ippp)[];int function (){  ipp = (int (*)[]) 0;			// OK  ippp = (int (**)[]) 0;		// gets bogus error (syntax)  return 0;}int main () { return 0; }

⌨️ 快捷键说明

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