Sign in
gnu
/
gcc
/
a6d3012b274f38b20e2a57162106f625746af6c6
/
.
/
gcc
/
testsuite
/
gnat.dg
/
specs
/
root.ads
blob: e80ab88040168295e7136739d220fbf4222060f1 [
file
] [
log
] [
blame
]
package
Root
is
type
Buffer_Type
is
array
(
Positive
range
<>)
of
Natural
;
type
Root_Type
(
First
:
Natural
)
is
abstract
tagged record
Buffer_Root
:
Buffer_Type
(
1
..
First
);
end
record
;
end
Root
;