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

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

--  { dg-do run }

with Ada.Tags;
procedure tag1 is
   type T is tagged null record;
   X : Ada.Tags.Tag;
begin
   begin
     X := Ada.Tags.Descendant_Tag ("Internal tag at 16#0#", T'Tag);
     raise Program_Error;
   exception
     when Ada.Tags.Tag_Error => null; 
   end;
   begin
     X := Ada.Tags.Descendant_Tag ("Internal tag at 16#XXXX#", T'Tag);
     raise Program_Error;
   exception
     when Ada.Tags.Tag_Error => null;
   end; 
end;