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
/
pointer_protected_p.ads
blob
65e4e72ab55845166008230f8d99fde0ac14e6f0
1
package
pointer_protected_p
is
2
type
T
;
3
4
type
Ptr
is access protected procedure
(
Data
:
T
);
5
6
type
T
is record
7
Data
:
Ptr
;
8
end record
;
9
end
pointer_protected_p
;