📄 900520_05.c
字号:
// g++ 1.37.1 bug 900520_05// The following legal code gets syntax errors from g++.// keywords: syntax, unimplemented, operator new, initialization, pointer typesstruct struct_0 {};char *cp;static struct_0 *sp;void test0 (){ new char * (cp); // gets bogus error}void test1 (){ new struct_0 * (sp); // gets bogus error}int main () { return 0; }
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -