Fix the new pr83361.c testcase
[official-gcc.git] / gcc / testsuite / gnat.dg / specs / private_with.ads
blobf339e5a43b351824335e33153db1c870661acde4
1 -- { dg-do compile }
3 private with Ada.Containers.Ordered_Maps;
4 with Ada.Containers.Ordered_Sets;
5 with Ada.Unchecked_Deallocation;
6 package private_with is
8 type String_Access is access String;
10 package Index_Sets is new Ada.Containers.Ordered_Sets
11 (Element_Type => Positive);
13 procedure Free is new Ada.Unchecked_Deallocation
14 (Object => String,
15 Name => String_Access);
16 end;