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++: prvalue of array type [PR111286]
[official-gcc.git]
/
gcc
/
testsuite
/
gnat.dg
/
aliasing1.ads
blob
9ebfd6206b445d9d193aee2068c7c8f11b6dd54b
1
package
Aliasing1
is
2
3
type
Rec
is record
4
I
:
Integer
;
5
end record
;
6
7
type
Ptr
is access all
Integer
;
8
9
R
:
Rec
;
10
11
function
F
(
P
:
Ptr
)
return
Integer
;
12
13
end
Aliasing1
;