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
/
array13.ads
blob
0d0a8df501b199ca532aa104686abdcaa0b4eb45
1
package
Array13
is
2
3
Max
:
Natural
:=
1
;
4
5
type
Arr
is array
(
Natural
range
0
..
Max
)
of
Natural
;
6
7
type
T
is record
8
A
:
Arr
:= (
others
=>
0
);
9
end record
;
10
11
procedure
Foo
;
12
13
end
Array13
;