📄 bug1496419.c
字号:
/*
bug1057979.c
*/
#include <testfwk.h>
typedef struct _NODE
{
const struct _NODE * enter;
const struct _NODE * down;
}NODE;
const NODE node1 = {NULL, NULL};
//sdcc loops allocating space for new symbols node1 and
//zzz until there is no more memory, then segfaults
//
//The reference to zzz inside the declaration of zzz
//triggers a loop allocating space for symbols node1
//and zzz
const NODE zzz = {&node1, &zzz};
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -