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
/
dispatch2_p.ads
blob
e7852b446b5c0aa65730774b7fb47de9b5d816cb
1
package
dispatch2_p
is
2
type
Object
is tagged null record
;
3
type
Object_Ptr
is access all
Object
'CLASS
;
4
--
5
function
Impl_Of
(
Self
:
access
Object
)
return
Object_Ptr
;
6
function
Get_Ptr
(
Self
:
access
Object
)
return
Object_Ptr
7
renames
Impl_Of
;
8
end
;