Sign in
gnu
/
gcc
/
fba228e259dd5112851527f2dbb62c5601100985
/
.
/
gcc
/
testsuite
/
gnat.dg
/
limited2_pack_1.ads
blob: c7d0950d0ba8631729349c76091f80452b32491e [
file
] [
log
] [
blame
]
Hristian Kirtchev
5b4ce2a
2019-07-10 09:01:38 +0000
[
diff
] [
blame
]
1
package
Limited2_Pack_1
is
2
type A
is
limited
private
;
3
type A_Ptr
is
access all A
;
4
5
private
6
type B
;
7
type A
is
access all B
;
8
end
Limited2_Pack_1
;