Sign in
gnu
/
gcc.git
/
ab7c7b46c35ed1be68d4c020a2f20ee96f68b64b
/
.
/
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
;