This commit was manufactured by cvs2svn to create branch
[official-gcc.git] / gcc / testsuite / gcc.dg / redecl-1.c
blob14877667e91d7fc9763e365c287c10a5e37b7a78
1 /* Test for various situations where a new declaration of an
2 identifier conflicts with an earlier declaration which isn't in the
3 same scope. These are all undefined behavior per C89 sections
4 6.1.2.2p7, 6.1.2.6p2, and 6.3.2.2p2/footnote 38 (C99 6.2.2p7 and
5 6.2.7p2 - implicit declarations are invalid in C99). */
7 /* { dg-do compile } */
8 /* { dg-options "-std=c89 -pedantic -Wall -Wno-unused" } */
10 /* Extern at function scope, clashing with extern at file scope */
12 extern int foo1; /* { dg-error "previous" } */
13 extern int bar1(int); /* { dg-error "previous" } */
15 void test1(void)
17 extern double foo1; /* { dg-error "conflict" } */
18 extern double bar1(double); /* { dg-error "conflict" } */
21 /* Extern at file scope, clashing with extern at function scope */
23 void test2(void)
25 extern double foo2; /* { dg-error "previous" } */
26 extern double bar2(double); /* { dg-error "previous" } */
29 extern int foo2; /* { dg-error "conflict" } */
30 extern int bar2(int); /* { dg-error "conflict" } */
32 /* Extern at function scope, clashing with extern at earlier function
33 scope. Also, don't be fooled by a typedef at file scope. */
35 typedef float baz3; /* { dg-bogus } */
37 void prime3(void)
39 extern int foo3; /* { dg-error "previous" } */
40 extern int bar3(int); /* { dg-error "previous" } */
41 extern int baz3; /* { dg-error "previous" } */
44 void test3(void)
46 extern double foo3; /* { dg-error "conflict" } */
47 extern double bar3(double); /* { dg-error "conflict" } */
48 extern double baz3; /* { dg-error "conflict" } */
51 /* Extern at function scope, clashing with previous implicit decl. */
53 void prime4(void)
55 bar4(); /* { dg-error "previous|implicit" } */
58 void test4(void)
60 extern double bar4(double); /* { dg-error "conflict" } */
63 /* Implicit decl, clashing with extern at previous function scope. */
65 void prime5(void)
67 extern double bar5(double); /* { dg-error "previous" "" } */
70 void test5(void)
72 bar5(1); /* { dg-error "implicit" } */
75 /* Extern then static, both at file scope. */
77 extern int test6(int); /* { dg-warning "previous" "" } */
78 static int test6(int x)
79 { return x; } /* { dg-warning "follows non-static" } */
82 /* Extern then static, extern at previous function scope. */
84 void prime7(void)
86 extern int test7(int); /* { dg-warning "previous" "" } */
89 static int test7(int x)
90 { return x; } /* { dg-warning "follows non-static" } */
92 /* Implicit decl then static. */
94 void prime8(void)
96 test8(); /* { dg-warning "previous" "" } */
97 /* { dg-warning "implicit" "" { target *-*-* } 96 } */
100 static int test8(int x)
101 { return x; } /* { dg-warning "follows non-static" } */