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++: constrained lambda error-recovery [PR108972]
[official-gcc.git]
/
gcc
/
testsuite
/
gnat.dg
/
discr49_rec2.ads
blob
4979bfb64cdbb77540d74b735c157d1dc5eab300
1
with
Discr49_Rec1
;
use
Discr49_Rec1
;
2
3
package
Discr49_Rec2
is
4
type
Child
(
Discr
:
Boolean
)
is private
;
5
function
Value
(
Obj
:
Child
)
return
Integer
;
6
7
private
8
type
Child
(
Discr
:
Boolean
)
is
9
new
Parent
(
Discr_1
=>
Discr
,
Discr_2
=>
True
);
10
end
Discr49_Rec2
;