repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
c++: prvalue of array type [PR111286]
[official-gcc.git]
/
gcc
/
testsuite
/
gnat.dg
/
generic_inst9_pkg1.ads
blob
50b62f166de5395685c80737dc96b9f75eebd054
1
2
package
Generic_Inst9_Pkg1
is
3
4
type
T
is
(
None
,
Smaller
,
Equal
,
Larger
);
5
6
type
R
is record
7
Val
:
Integer
;
8
end record
;
9
10
function
Compare
(
Left
,
Right
:
R
)
return
T
;
11
12
end
;