blob: 4d233e2a4049abeaaf7827856a70d7343000e998 [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;
Douglas Gregor17fc2232009-04-14 21:55:33 +00009double d = 17.42;
Douglas Gregorfdd01722009-04-14 00:24:19 +000010
11// Should not show up
12static int z;
Douglas Gregorf807fe02009-04-14 16:27:31 +000013
14int incomplete_array[];
15int incomplete_array2[];
16
17// FIXME: CodeGen problems prevents this from working (<rdar://problem/6762287>)
18// struct S s;