Sign in
gnu
/
gcc
/
d769c5040874bf9546f2524f3f1d2a894165f92a
/
.
/
gcc
/
testsuite
/
gnat.dg
/
type_conv2.ads
blob: b9ddeb2c57ff73407eba197798f74a6ee9898d2f [
file
] [
log
] [
blame
]
package
Type_Conv2
is
type
Root
is
abstract
tagged limited
null
record
;
type
Der_I
is
new
Root
with
record
X
:
Integer
;
end
record
;
function
Wrap
(
X
:
Integer
)
return
Root
'Class;
procedure Proc_Static;
end Type_Conv2;