20041213-1.c

来自「Mac OS X 10.4.9 for x86 Source Code gcc」· C语言 代码 · 共 33 行

C
33
字号
/* { 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 + =
减小字号Ctrl + -
显示快捷键?