1 // RUN: %clang_cc1 -triple %itanium_abi_triple -fsyntax-only -Wno-strict-prototypes -verify %s
5 void g0(); // expected-note{{previous declaration is here}} expected-note{{'g0' declared here}}
8 g0(1, 2, 3); // expected-error{{too many arguments to function call}}
11 void g0(int); // expected-error{{conflicting types for 'g0'}}
24 int g2(int, int); // expected-note{{previous declaration is here}}
26 INT
g2(x
) // expected-error{{conflicting types for 'g2'}}
37 void f1(double); // expected-note{{previous declaration is here}}
39 int f1(int); // expected-error{{conflicting types for 'f1'}}
45 extern void g3(int); // expected-note{{previous declaration is here}}
46 static void g3(int x
) { } // expected-error{{static declaration of 'g3' follows non-static declaration}}
49 extern int f2
; // expected-note 2 {{previous definition is here}}
51 void f2(int); // expected-error{{redefinition of 'f2' as different kind of symbol}}
57 void f2(int); // expected-error{{redefinition of 'f2' as different kind of symbol}}
62 int outer1(int); // expected-note{{previous declaration is here}}
64 int outer4(int); // expected-note{{previous declaration is here}}
65 int outer5
; // expected-note{{previous definition is here}}
68 void outer_test(void) {
69 int outer1(float); // expected-error{{conflicting types for 'outer1'}}
70 int outer2(int); // expected-note{{previous declaration is here}}
71 int outer3(int); // expected-note{{previous declaration is here}}
73 int outer5(int); // expected-error{{redefinition of 'outer5' as different kind of symbol}}
74 int* outer6(int); // expected-note{{previous declaration is here}}
81 int outer2(float); // expected-error{{conflicting types for 'outer2'}}
82 int outer3(float); // expected-error{{conflicting types for 'outer3'}}
83 int outer4(float); // expected-error{{conflicting types for 'outer4'}}
85 void outer_test2(int x
) {
86 int* ip
= outer6(x
); // expected-warning{{use of out-of-scope declaration of 'outer6'}}
90 void outer_test3(void) {
91 int *(*fp
)(int) = outer8
; // expected-error{{use of undeclared identifier 'outer8'}}
96 // GNU extension: prototypes and K&R function definitions
97 int isroot(short x
, // expected-note{{previous declaration is here}}
101 short x
; // expected-warning{{promoted type 'int' of K&R function parameter is not compatible with the parameter type 'short' declared in a previous prototype}}
108 void *h0(unsigned a0
, ...);
109 extern __typeof (h0
) h1
__attribute__((__sentinel__
));
110 extern __typeof (h1
) h1
__attribute__((__sentinel__
));
113 void i0 (unsigned short a0
);
114 extern __typeof (i0
) i1
;
115 extern __typeof (i1
) i1
;
118 typedef int a2(int*);
120 a2 x2
; // expected-note{{passing argument to parameter here}}
123 x2(5); // expected-error{{incompatible integer to pointer conversion passing 'int' to parameter of type 'int *'}}
128 void f3(enum e0 x
) {}
130 enum incomplete_enum
;
131 void f4(); // expected-note {{previous declaration is here}}
132 void f4(enum incomplete_enum
); // expected-error {{conflicting types for 'f4'}}