forked from OSchip/llvm-project
26 lines
847 B
C
26 lines
847 B
C
// RUN: clang %s -fsyntax-only -verify
|
|
// PR1892
|
|
void f(double a[restrict][5]); // should promote to restrict ptr.
|
|
void f(double (* restrict a)[5]);
|
|
|
|
int foo (__const char *__path);
|
|
int foo(__const char *__restrict __file);
|
|
|
|
void func(const char*); //expected-error{{previous declaration is here}}
|
|
void func(char*); //expected-error{{conflicting types for 'func'}}
|
|
|
|
void g(int (*)(const void **, const void **));
|
|
void g(int (*compar)()) {
|
|
}
|
|
|
|
|
|
// PR1965
|
|
int t5(b); // expected-error {{parameter list without types}}
|
|
int t6(int x, g); // expected-error {{type specifier required for parameter 'g'}}
|
|
|
|
int t7(, ); // expected-error {{type specifier required}} expected-error {{type specifier required}}
|
|
int t8(, int a); // expected-error {{type specifier required}}
|
|
int t9(int a, ); // expected-error {{type specifier required}}
|
|
|
|
|