Sign in
gnu
/
gcc
/
d769c5040874bf9546f2524f3f1d2a894165f92a
/
.
/
gcc
/
testsuite
/
gnat.dg
/
atomic2.adb
blob: c14d21e13ee591bdbf88d938b39c1b6628f62632 [
file
] [
log
] [
blame
]
--
{
dg
-
do
compile
}
procedure
Atomic2
is
type
Big
is
array
(
1.
.
4
)
of
Integer
;
type
Arr
is
array
(
1.
.
10
)
of
Big
;
pragma
Atomic_Components
(
Arr
);
--
{
dg
-
warning
"cannot be guaranteed"
}
begin
null
;
end
;