mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-25 00:56:04 +00:00
14 lines
176 B
C
14 lines
176 B
C
// 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;
|