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
2015-09-24 Vladimir Makarov <vmakarov@redhat.com>
[official-gcc.git]
/
gcc
/
testsuite
/
gnat.dg
/
aliasing2.ads
blob
7a7e411fa586268fe87cd6b7c17e62fb1a5b4395
1
package
Aliasing2
is
2
3
type
Arr
is Array
(
1
.
.4
)
of
Integer
;
4
type
Ptr
is access all
Integer
;
5
6
A
:
Arr
;
7
8
function
F
(
P
:
Ptr
)
return
Integer
;
9
10
end
Aliasing2
;