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
/
pack23.adb
blob
aa8099fd3cb69e2646479c14a218e9e12deda8cc
1
-- { dg-do compile }
2
-- { dg-options "-gnatws" }
3
4
with
Pack23_Pkg
;
5
6
function
Pack23
return
Integer
is
7
8
type
Arr
is array
(
1
..
32
)
of
Boolean
with
Size
=>
32
,
Pack
;
9
10
A
:
Arr
;
11
12
begin
13
return
Pack23_Pkg
.
Func
(
A
(
1
));
14
end
;