* fi.po: Update.
[official-gcc.git] / gcc / testsuite / gnat.dg / debug2_pkg.ads
blobfc68249b8217ef310851f9f989a637d5a9d1896b
1 package Debug2_Pkg is
3 type String_Ptr is access all String;
5 function To_Heap return String_Ptr;
7 type String_List(Chars_Length: Positive) is private;
9 type String_List_Ptr is access constant String_List;
11 function Singleton return String_List;
13 private
15 type String_List(Chars_Length: Positive) is record
16 Chars: String(1..Chars_Length);
17 end record;
19 end Debug2_Pkg;