blob: bb51a9d64b9fe2f494658045437d499eee8ca3d9 [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
Douglas Gregorb6c8c8b2009-04-21 17:11:58 +000017struct S s;