Sign in
gnu
/
gcc
/
d769c5040874bf9546f2524f3f1d2a894165f92a
/
.
/
gcc
/
testsuite
/
gnat.dg
/
generic_inst9_pkg1.ads
blob: 50b62f166de5395685c80737dc96b9f75eebd054 [
file
] [
log
] [
blame
]
package
Generic_Inst9_Pkg1
is
type T
is
(
None
,
Smaller
,
Equal
,
Larger
);
type R
is
record
Val
:
Integer
;
end
record
;
function
Compare
(
Left
,
Right
:
R
)
return
T
;
end
;