aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gnat.dg/import2.adb
blob: 07ba880d3f7c0b431017f26d3ef7ee5b3125a06f (plain)
1
2
3
4
5
6
7
8
9
10
11
--  { dg-do run }

procedure Import2 is
   type Index_Typ is mod 2**64;
   type Mod_Array is array (Index_Typ) of Integer;

   Obj : Mod_Array;
   pragma Import (Ada, Obj);
begin
   null;
end Import2;