1 // RUN: %clang_cc1 %s -fsyntax-only -verify -pedantic
7 void f2(int [const *]);
8 void f3(int [volatile const*]);
9 int f4(*XX
)(void); /* expected-error {{cannot return}} expected-warning {{type specifier missing, defaults to 'int'}} */
10 int f5(int [static]); /* expected-error {{'static' may not be used without an array size}} */
14 void (*signal(int, void (*)(int)))(int);
16 int aaaa
, ***C
, * const D
, B(int);
22 void test2(int *P
, int A
) {
25 // Hard case for array decl, not Array[*].
26 int Array
[*(int*)P
+A
];
31 atype
/* expected-error {{unexpected type name 'atype': expected identifier}} */
34 void test4(x
, x
) int x
; {} /* expected-error {{redefinition of parameter 'x'}} */
38 int (test5
), ; // expected-error {{expected identifier or '('}}
42 // PR3963 & rdar://6759604 - test error recovery for mistyped "typenames".
44 foo_t
*d
; // expected-error {{unknown type name 'foo_t'}}
45 foo_t a
; // expected-error {{unknown type name 'foo_t'}}
46 int test6() { return a
; } // a should be declared.
48 // Use of tagged type without tag. rdar://6783347
49 struct xyz
{ int y
; };
50 enum myenum
{ ASDFAS
};
51 xyz b
; // expected-error {{must use 'struct' tag to refer to type 'xyz'}}
52 myenum c
; // expected-error {{must use 'enum' tag to refer to type 'myenum'}}
55 // We should recover 'b' by parsing it with a valid type of "struct xyz", which
56 // allows us to diagnose other bad things done with y, such as this.
57 return &b
.y
; // expected-warning {{incompatible pointer types returning 'int *' from a function with result type 'float *'}}
60 struct xyz
test8() { return a
; } // a should be be marked invalid, no diag.
63 // Verify that implicit int still works.
64 static f
; // expected-warning {{type specifier missing, defaults to 'int'}}
65 static g
= 4; // expected-warning {{type specifier missing, defaults to 'int'}}
66 static h
// expected-warning {{type specifier missing, defaults to 'int'}}
71 int x
// expected-error {{expected ';' at end of declaration list}}
73 int z
// expected-warning {{expected ';' at end of declaration list}}
77 struct test10
{ int a
; } static test10x
;
78 struct test11
{ int a
; } const test11x
;
82 (void)__builtin_offsetof(struct { char c
; int i
; }, i
);
86 struct test13
{ int a
; } (test13x
);
88 // <rdar://problem/8044088>
89 struct X
<foo::int> { }; // expected-error{{expected identifier or '('}}
92 // PR7617 - error recovery on missing ;.
94 void test14() // expected-error {{expected ';' after top level declarator}}
97 void *test14b
= (void*)test14a
; // Make sure test14a didn't get skipped.
99 // rdar://problem/8358508
100 long struct X
{ int x
; } test15(); // expected-error {{'long struct' is invalid}}
102 void test16(i
) int i j
; { } // expected-error {{expected ';' at end of declaration}}
103 void test17(i
, j
) int i
, j k
; { } // expected-error {{expected ';' at end of declaration}}
104 void knrNoSemi(i
) int i
{ } // expected-error {{expected ';' at end of declaration}}
109 int x
= 4+(5-12)); // expected-error {{extraneous ')' before ';'}}
112 enum E1
{ e1
}: // expected-error {{expected ';'}}
113 struct EnumBitfield
{ // expected-warning {{struct without named members is a GNU extension}}
114 enum E2
{ e2
} : 4; // ok
115 struct S
{ int n
; }: // expected-error {{expected ';'}}
116 // expected-warning@-1 {{declaration does not declare anything}}
126 , // expected-error{{expected identifier}}
129 void func_E12(enum E12
*p
) { *p
= A2
; }
132 1D
, // expected-error{{expected identifier}}
135 void func_E13(enum E13
*p
) { *p
= A3
; }
138 A4
12, // expected-error{{expected '= constant-expression' or end of enumerator definition}}
141 void func_E14(enum E14
*p
) { *p
= A4a
; }
144 A5
=12 4, // expected-error{{expected '}' or ','}}
147 void func_E15(enum E15
*p
) { *p
= A5a
; }
150 A6
; // expected-error{{expected '= constant-expression' or end of enumerator definition}}
154 int PR20634
= sizeof(struct { int n
; } [5]);