aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/22-decl.c
blob: a14b776a13b6622481d5af507a15cf1c6e9500f7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* EXPECT:
*/

void f(int (*)());
void f(int (*)(int));
void f(int (*)());
int a[];
int a[100];
int a[];

static unsigned local;
extern unsigned local;

typedef struct foo { char r; } foo_t;
static const foo_t T = ((foo_t) { 3 });

int main() {
}