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 target/84336
[official-gcc.git]
/
gcc
/
testsuite
/
gnat.dg
/
incomplete3.adb
blob
6db500f00f6953497d824893b106f66bff2faa7e
1
-- { dg-do compile }
2
3
package body
Incomplete3
is
4
5
function
Get_Tracer
(
This
:
access
Output_T
'Class
)
return
Tracer_T
'class
is
6
begin
7
return
Tracer_T
'Class
(
Tracer_T
'(Output => This));
8
end ;
9
10
function Get_Output (This : in Tracer_T) return access Output_T'Class is
11
begin
12
return This.Output;
13
end;
14
15
end Incomplete3;