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

📄 20041213-1.c

📁 linux下编程用 编译软件
💻 C
字号:
/* { dg-do compile } *//* test redeclarations with void and implicit int */extern foo1(); /* { dg-error "error: previous declaration" } */extern void foo1(); /* { dg-error "error: conflicting types" } */extern void foo2(); /* { dg-error "error: previous declaration" } */extern foo2(); /* { dg-error "error: conflicting types" } */void foo3() {} /* { dg-error "error: previous definition" } */extern foo3(); /* { dg-error "error: conflicting types" } */extern foo4(); /* { dg-error "error: previous declaration" } */void foo4() {} /* { dg-error "error: conflicting types" } */extern void foo5(); /* { dg-warning "previous declaration" } */foo5() {} /* { dg-warning "conflicting types" } */foo6() {} /* { dg-error "error: previous definition" } */extern void foo6(); /* { dg-error "error: conflicting types" } */foo7() {} /* { dg-error "error: previous definition" } */void foo7() {} /* { dg-error "error: conflicting types" } */void foo8() {} /* { dg-error "error: previous definition" } */foo8() {} /* { dg-error "error: conflicting types" } */int use9() { foo9(); } /* { dg-warning "previous implicit declaration" } */extern void foo9(); /* { dg-warning "conflicting types" } */int use10() { foo10(); } /* { dg-warning "previous implicit declaration" } */void foo10() {} /* { dg-warning "conflicting types" } */

⌨️ 快捷键说明

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