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

📄 anon-struct1.c

📁 Mac OS X 10.4.9 for x86 Source Code gcc 实现源代码
💻 C
字号:
/* { dg-options "-ansi -pedantic -pedantic-errors" } *//* In strict ISO C++ mode, we don't recognize the anonymous struct   extension or any Microsoft C extensions.  */struct A { char a; };struct B {  struct A;			/* forward decl of B::A.  */  char b;};char testB[sizeof(B) == sizeof(A) ? 1 : -1];struct C {  struct D { char d; };		/* decl of C::D.  */  char c;};char testC[sizeof(C) == sizeof(A) ? 1 : -1];char testD[sizeof(C::D) == sizeof(A) ? 1 : -1];/* GNU extension.  */struct E {  struct { char z; };		/* { dg-error "prohibits anonymous structs" } */  char e;};typedef struct A typedef_A;struct F {  typedef_A;			/* { dg-error "does not declare anything" } */  char f;};char testF[sizeof(struct F) == sizeof(struct A) ? 1 : -1];/* __extension__ enables GNU C mode for the duration of the declaration.  */__extension__ struct G {  struct { char z; };  char g;};char testG[sizeof(G) == 2 * sizeof(A) ? 1 : -1];struct H {  __extension__ struct { char z; };  char h;};char testH[sizeof(H) == 2 * sizeof(A) ? 1 : -1];/* Make sure __extension__ gets turned back off.  */struct I {  struct { char z; };		/* { dg-error "prohibits anonymous structs" } */  char i;};

⌨️ 快捷键说明

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