PR testsuite/86649
[official-gcc.git] / gcc / testsuite / gnat.dg / import2.adb
blob07ba880d3f7c0b431017f26d3ef7ee5b3125a06f
1 -- { dg-do run }
3 procedure Import2 is
4 type Index_Typ is mod 2**64;
5 type Mod_Array is array (Index_Typ) of Integer;
7 Obj : Mod_Array;
8 pragma Import (Ada, Obj);
9 begin
10 null;
11 end Import2;