2009-07-17 Richard Guenther <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / gcc.dg / enum-compat-1.c
blob5fb150cee7986348878390dae12333017f38a2d7
1 /* Test that enumerated types are only considered compatible when they
2 are the same type. PR c/6024. */
3 /* Origin: Joseph Myers <jsm@polyomino.org.uk>, based on
4 PR c/6024 from Richard Earnshaw <rearnsha@arm.com> */
5 /* { dg-do compile } */
6 /* { dg-options "" } */
8 /* Original test from PR c/6024. */
9 enum e1 {a, b};
10 enum e2 {c, d};
12 void f(enum e1); /* { dg-error "prototype" "error at decl" } */
14 void f(x)
15 enum e2 x; /* { dg-error "doesn't match prototype" } */
17 return;
20 /* Other compatibility tests. */
21 enum e3 { A };
22 enum e4 { B };
24 enum e3 v3;
25 enum e4 *p = &v3; /* { dg-warning "incompatible" "incompatible pointer" } */
26 enum e3 *q = &v3;
28 void g(enum e3); /* { dg-message "note: previous declaration" "error at first decl" } */
29 void g(enum e4); /* { dg-error "conflicting types" "error at second decl" } */
31 void h(enum e3);
32 void h(enum e3);