blob: 06c4601ccb32bc8e517763a7212af87ff83bf8f5 [file] [log] [blame]
Douglas Gregorfdd01722009-04-14 00:24:19 +00001// Helper for external-defs.c test
2
Douglas Gregorf807fe02009-04-14 16:27:31 +00003// Tentative definitions
Douglas Gregorfdd01722009-04-14 00:24:19 +00004int x;
Douglas Gregorf807fe02009-04-14 16:27:31 +00005int x2;
Douglas Gregorfdd01722009-04-14 00:24:19 +00006
Douglas Gregor0b748912009-04-14 21:18:50 +00007// Definitions
Douglas Gregorfdd01722009-04-14 00:24:19 +00008int y = 17;
9
10// Should not show up
11static int z;
Douglas Gregorf807fe02009-04-14 16:27:31 +000012
13int incomplete_array[];
14int incomplete_array2[];
15
16// FIXME: CodeGen problems prevents this from working (<rdar://problem/6762287>)
17// struct S s;