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
Corrected date in changelog
[official-gcc.git]
/
gcc
/
testsuite
/
gnat.dg
/
addr1.adb
blob
5f5ff53563361cccb533efcc5153198c3c85ad55
1
-- { dg-do compile }
2
3
with
System
;
4
package body
addr1
is
5
task type
T
is
6
entry
Send
(
Location
:
System
.
Address
);
7
end
;
8
task body
T
is
9
begin
10
accept
Send
(
Location
:
System
.
Address
)
do
11
declare
12
Buffer
:
String
(
1
..
100
);
13
for
Buffer
'Address
use
Location
;
-- Test
14
begin
15
null
;
16
end
;
17
end
Send
;
18
end
;
19
end
;