OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gnat.dg/] [no_final.adb] - Rev 696

Compare with Previous | Blame | View Log

-- { dg-do run }
 
pragma Restrictions (No_Finalization);
procedure no_final is
   package P is
      type T is tagged null record;
      type T1 is new T with record
         A : String (1..80);
      end record;
      function F return T'Class;
   end P;
 
   Str : String (1..80) := (1..80=>'x');
 
   package body P is
      function F return T'Class is
         X : T1 := T1'(A => Str);
      begin
         return X;
      end F;
   end P;
 
   Obj : P.T'class := P.F;
begin
   if P.T1 (Obj).A /= Str then
      raise Constraint_Error;
   end if;
end;
 
 

Compare with Previous | Blame | View Log

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.