view gcc/testsuite/gnat.dg/iface_test.adb @ 158:494b0b89df80 default tip

...
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Mon, 25 May 2020 18:13:55 +0900
parents 04ced10e8804
children
line wrap: on
line source

--  { dg-do compile }
package body Iface_Test is
   protected SQLite_Safe is
      function Prepare_Select
        (DB   : DT_1;
         Iter : Standard.Iface_Test.Iface_2'Class)
      return Standard.Iface_Test.Iface_2'Class;
   end;

   overriding procedure Prepare_Select
     (DB   : DT_1;
      Iter : in out Standard.Iface_Test.Iface_2'Class)
   is
   begin
      Iter := SQLite_Safe.Prepare_Select (DB, Iter);  --  test
   end;

   protected body SQLite_Safe is
      function Prepare_Select
        (DB   : DT_1;
         Iter : Standard.Iface_Test.Iface_2'Class)
        return Standard.Iface_Test.Iface_2'Class
      is
      begin
         return Iter;
      end;
   end;
end;