Sign in
gnu
/
gcc
/
d769c5040874bf9546f2524f3f1d2a894165f92a
/
.
/
gcc
/
testsuite
/
gnat.dg
/
import2.adb
blob: 07ba880d3f7c0b431017f26d3ef7ee5b3125a06f [
file
] [
log
] [
blame
]
--
{
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
;