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

📄 anon-struct-2.c

📁 linux下编程用 编译软件
💻 C
字号:
/* { dg-options "-std=gnu89" } *//* In GNU C mode, we recognize the anonymous struct/union extension,   but not Microsoft extensions.  */struct A { char a; };/* MS extension.  */struct B {  struct A;			/* { dg-warning "does not declare anything" } */  char b;};char testB[sizeof(struct B) == sizeof(struct A) ? 1 : -1];/* MS extension.  */struct C {  struct D { char d; };		/* { dg-warning "does not declare anything" } */  char c;};char testC[sizeof(struct C) == sizeof(struct A) ? 1 : -1];char testD[sizeof(struct D) == sizeof(struct A) ? 1 : -1];/* GNU extension.  */struct E {  struct { char z; };  char e;};char testE[sizeof(struct E) == 2 * sizeof(struct A) ? 1 : -1];/* MS extension.  */typedef struct A typedef_A;struct F {  typedef_A;			/* { dg-warning "does not declare anything" } */  char f;};char testF[sizeof(struct F) == sizeof(struct A) ? 1 : -1];/* Test that __extension__ does the right thing coming _from_ GNU C mode.  */__extension__ struct G {  struct { char z; };  char g;};char testG[sizeof(struct G) == 2 * sizeof(struct A) ? 1 : -1];struct H {  struct { char z; };  char h;};char testH[sizeof(struct H) == 2 * sizeof(struct A) ? 1 : -1];

⌨️ 快捷键说明

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