900404_07.c
来自「this is a gcc file, you can download it 」· C语言 代码 · 共 18 行
C
18 行
// g++ 1.37.1 bug 900404_07// It is illegal to use a cast to attempt to convert an object type// to a non-scalar type (e.g. an array type).// g++ fails to properly flag as errors such illegal uses of array types.// keywords: array types, casts, type conversiontypedef int array_type[10];array_type *ap;void foo (){ int i = *((array_type) *ap); /* ERROR - missed */}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?