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

📄 wredundant-decls-2.c

📁 linux下编程用 编译软件
💻 C
字号:
/* Test for -Wredundant-decls warnings *//* { dg-do compile } *//* { dg-options "-Wredundant-decls" } */int j = 5; /* { dg-warning "previous" } */int j;     /* { dg-warning "redundant" } */static int k;static int k = 5; /* { dg-warning "previous" } */static int k;     /* { dg-warning "redundant" } */static int l = 5; /* { dg-warning "previous" } */static int l;     /* { dg-warning "redundant" } */static int m;     /* { dg-warning "previous" } */static int m;     /* { dg-warning "redundant" } */static int m = 5;int n;           /* { dg-warning "previous" } */int n;           /* { dg-warning "redundant" } */int n = 5; static int o;static int o = 5;int p;int p = 5;

⌨️ 快捷键说明

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