blob: 657b47bcc141a3004f5bd2b60caf85423fc94aa9 (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
// Helper for external-defs.c test
// Tentative definitions
int x;
int x2;
// Should not show up
static int z;
int incomplete_array[];
int incomplete_array2[];
struct S s;
|