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
/
discr59_pkg2.ads
blob
01ed5090ebdd4cacd52ebc6e99734abe879fc44d
1
generic
2
3
Max_Length
:
Positive
;
4
5
package
Discr59_Pkg2
is
6
7
type
Token_Base_Type
(
Most
:
Natural
)
is record
8
Text
:
String
(
1
..
Most
) := (
others
=>
' '
);
9
Last
:
Natural
:=
0
;
10
Used
:
Natural
:=
0
;
11
end record
;
12
13
type
Token_Type
is new
Token_Base_Type
(
Max_Length
);
14
15
end
Discr59_Pkg2
;