bug-524211.c
来自「sdcc是为51等小型嵌入式cpu设计的c语言编译器支持数种不同类型的cpu」· C语言 代码 · 共 31 行
C
31 行
/* Problem with casts and warnings. */#include <testfwk.h>#if 0/* Disabled as this only shows a warning */typedef unsigned short UINT16;typedef unsigned char UINT8;typedef struct _Class Class;typedef struct _String{ const UINT8 sz[1];} String;struct _Class{ String *szName;};const Class Bar = { "java.lang.Object",};void foo(void){}#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?