20011217-1.c

来自「this is a gcc file, you can download it 」· C语言 代码 · 共 21 行

C
21
字号
/* Test that the initializer of a compound literal is properly walked   when tree inlining.  *//* Origin: PR c/5105 from <aj@suse.de>.  */typedef struct { long p; } pt;inline pt f (pt _p){  long p = _p.p;  return (pt) { (p) };}static int mmap_mem (void){  pt p;  p = f (p);  return 0;}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?