| // RUN: %clang_cc1 -fsyntax-only -verify -pedantic %s |
| int eli(float b); // expected-note {{previous declaration is here}} |
| int eli(int (int)); // expected-error {{conflicting types for 'eli'}} |
| int bar(int i) // expected-note {{previous definition is here}} |
| int bar() // expected-error {{redefinition of 'bar'}} |
| int foobar(int); // note {{previous declaration is here}} |
| int foobar() // error {{conflicting types for 'foobar'}} |
| int wibble(); // expected-note {{previous declaration is here}} |
| float wibble() // expected-error {{conflicting types for 'wibble'}} |