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
2016-11-21 Thomas Preud'homme <thomas.preudhomme@arm.com>
[official-gcc.git]
/
gcc
/
testsuite
/
gnat.dg
/
access3.ads
blob
18d453b329e2f72e2800746788efc63ac59ec632
1
2
package
access3
is
3
type
IT
is limited
interface
;
4
type
T
is limited new
IT
with null record
;
5
6
type
T2
is tagged limited null record
;
7
8
procedure
Op
9
(
Obj_T2
:
in out
T2
;
10
Obj_IT
:
not null access
IT
'Class
);
11
end
access3
;