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
/
sso10.adb
blob
5a796f2d493f331c88d85e992dc8c9cc4bb61d25
1
-- { dg-do run }
2
3
with
SSO10_Pkg
;
use
SSO10_Pkg
;
4
5
procedure
SSO10
is
6
7
procedure
Inner
(
R
:
Root
'Class
)
is
8
begin
9
Run
(
R
);
10
end
;
11
12
R
:
Root
;
13
14
begin
15
Inner
(
R
);
16
end
;