bug-524211.c

来自「Small Device C Compiler 面向Inter8051」· 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 + -
显示快捷键?