view gcc/testsuite/gnat.dg/bip_export.adb @ 152:2b5abeee2509

update gcc11
author anatofuz
date Mon, 25 May 2020 07:50:57 +0900
parents 1830386684a0
children
line wrap: on
line source

--  { dg-do compile }

package body Bip_Export is
   function F return T is
   begin
      return Result : constant T := G do
         null;
      end return;
   end F;

   function G return T is
   begin
      return (null record);
   end G;
end Bip_Export;