diff options
Diffstat (limited to 'test/PCH/external-defs.h')
-rw-r--r-- | test/PCH/external-defs.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/test/PCH/external-defs.h b/test/PCH/external-defs.h new file mode 100644 index 000000000000..657b47bcc141 --- /dev/null +++ b/test/PCH/external-defs.h @@ -0,0 +1,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; |