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
PR ipa/83051
[official-gcc.git]
/
gcc
/
testsuite
/
gnat.dg
/
discr2.adb
blob
0f03a0fd955e2798166796c5b4f71302d18b190c
1
-- { dg-do compile }
2
3
with
discr1
;
use
discr1
;
4
5
package body
discr2
is
6
7
procedure
Copy
(
Dataset
:
in out
C_Type
)
is
8
Last_Char
:
Positive
:=
300
;
9
begin
10
while
(
Last_Char
>
40
)
loop
11
Last_Char
:=
Last_Char
-
1
;
12
end loop
;
13
14
Assign
(
Dataset
.
Designator
(
1
..
Last_Char
));
15
end
;
16
17
procedure
Dummy
is
18
begin
19
null
;
20
end
Dummy
;
21
22
end
discr2
;