blob: c348d90444cea96fb4cda5a4f41feedd1f12da90 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
with Limited_With3_Pkg1;
with Limited_With3_Pkg2;
limited with Limited_With3_Pkg3;
package Limited_With3 is
procedure Dummy;
type T is tagged private;
private
package My_Q is new Limited_With3_Pkg1 (Limited_With3_Pkg2.T);
type T is tagged null record;
end Limited_With3;
|