📄 900209_01.c
字号:
// g++ 1.36.1 bug 900209_01// g++ implicitly casts values whose types are "void*" to other pointer// types (just as the language rules for C permit). Such implicit// conversions are not allowed by the Cfront 2.0 Reference Manual// however.// Cfront 2.0 passes this test.// keywords: void pointers, type conversions, pointer type conversionsvoid * void_pointer_object;char * char_pointer_object;void global_function_0 (){ char_pointer_object = void_pointer_object; // ERROR - }int main () { return 0; }
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -