⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 redecl-14.c

📁 linux下编程用 编译软件
💻 C
字号:
/* Some incompatible external linkage declarations were not diagnosed.   Bug 21342.  Test type in inner scope is correct.  *//* Origin: Joseph Myers <joseph@codesourcery.com> *//* { dg-do compile } *//* { dg-options "" } */typedef int IA[];typedef int IA5[5];typedef IA *IAP;typedef IA5 *IA5P;extern IAP a[];voidf (void){  {    extern IA5P a[];    sizeof (*a[0]);  }  extern IAP a[];  extern IAP a[5];  sizeof (*a[0]); /* { dg-error "error: invalid application of 'sizeof' to incomplete type 'IA'" } */}

⌨️ 快捷键说明

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