(root)/
gcc-13.2.0/
gcc/
testsuite/
gnat.dg/
incomplete6.adb
--  { dg-do compile }

package body Incomplete6 is

   function "=" (Left, Right : Vint) return Boolean is
   begin
      return Left.Value = Right.Value;
   end;
   
   function "=" (Left, Right : Vfloat) return Boolean is
   begin
      return Left.Value = Right.Value;
   end;

end;