Skip analyzer strndup test on hppa*-*-hpux*
[official-gcc.git] / gcc / testsuite / gnat.dg / equal7_pkg.ads
blob8fd601c99b3deae092c655d1ef3d99640b69434c
1 with Ada.Strings.Unbounded; use Ada.Strings.Unbounded;
2 with Ada.Finalization; use Ada.Finalization;
3 package Equal7_Pkg is
5 type Editor_Location is abstract new Controlled with null record;
6 Nil_Editor_Location : constant Editor_Location'Class;
8 function F (X : Integer) return Unbounded_String;
9 function F (X : Integer) return String;
11 private
12 type Dummy_Editor_Location is new Editor_Location with null record;
14 Nil_Editor_Location : constant Editor_Location'Class :=
15 Dummy_Editor_Location'(Controlled with null record);
16 end;