Merge from mainline (165734:167278).
[official-gcc/graphite-test-results.git] / gcc / testsuite / gnat.dg / prot2_pkg2.ads
blobcdd436b8afb561d1a9a1f1529bbc680bac1087b0
1 generic
3 type T is private;
5 package Prot2_Pkg2 is
7 type Id is private;
9 procedure Create (B : out Id);
10 procedure Delete (B : in out Id);
12 private
14 type Rec;
15 type Id is access Rec;
17 end Prot2_Pkg2;