forked from OSchip/llvm-project
24 lines
1.2 KiB
C
24 lines
1.2 KiB
C
// RUN: clang %s -verify -fsyntax-only
|
|
typedef char T[4];
|
|
|
|
T foo(int n, int m) { } // expected-error {{cannot return array or function}}
|
|
|
|
void foof(const char *, ...) __attribute__((__format__(__printf__, 1, 2))), barf (void);
|
|
|
|
int typedef validTypeDecl() { } // expected-error {{function definition declared 'typedef'}}
|
|
|
|
struct _zend_module_entry { }
|
|
typedef struct _zend_function_entry { } // expected-error {{cannot combine with previous 'struct' declaration specifier}}
|
|
static void buggy(int *x) { } // expected-error {{function definition declared 'typedef'}} \
|
|
// expected-error {{cannot combine with previous 'typedef' declaration specifier}} \
|
|
// expected-error {{cannot combine with previous 'struct' declaration specifier}}
|
|
|
|
// Type qualifiers.
|
|
typedef int f(void);
|
|
typedef f* fptr;
|
|
const f* v1; // expected-warning {{qualifier on function type 'f' has unspecified behavior}}
|
|
__restrict__ f* v2; // expected-error {{restrict requires a pointer or reference ('f' is invalid)}}
|
|
__restrict__ fptr v3; // expected-error {{pointer to function type 'f' may not be 'restrict' qualified}}
|
|
f *__restrict__ v4; // expected-error {{pointer to function type 'f' may not be 'restrict' qualified}}
|
|
|