Sign in
gnu
/
gcc
/
d769c5040874bf9546f2524f3f1d2a894165f92a
/
.
/
gcc
/
testsuite
/
gnat.dg
/
derived_type6.ads
blob: 37728a92a0e582934794ccd502a251139db40914 [
file
] [
log
] [
blame
]
with
Ada
.
Strings
.
Bounded
;
package
Derived_Type6
is
package
b
is
new
Ada
.
Strings
.
Bounded
.
Generic_Bounded_Length
(
10
);
subtype s1
is
b
.
Bounded_String
;
type s2
is
new
s1
;
procedure
Foo
;
end
Derived_Type6
;