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
compiler: give error for non-int arguments to make
[official-gcc.git]
/
gcc
/
testsuite
/
gnat.dg
/
renaming9.ads
blob
ce6b4ed09247d87a3fa01f4f1f32e624f2dac3f8
1
package
Renaming9
is
2
3
pragma
Elaborate_Body
;
4
5
type
Object
is tagged null record
;
6
7
type
Pointer
is access all
Object
'Class
;
8
9
type
Derived
is new
Object
with record
10
I
:
Integer
;
11
end record
;
12
13
Ptr
:
Pointer
:=
new
Derived
;
14
Obj
:
Derived
renames
Derived
(
Ptr
.
all
);
15
16
end
Renaming9
;