* fi.po: Update.
[official-gcc.git] / gcc / testsuite / gnat.dg / opt57_pkg.ads
blob9d2a9b6c07abc36d4857e4a4e0055823b7f3bc47
1 with System.Storage_Pools; use System.Storage_Pools;
3 with Ada.Finalization; use Ada.Finalization;
5 package Opt57_Pkg is
7 type GC_Pool is abstract new Root_Storage_Pool with null record;
9 type Pinned (Pool : access GC_Pool'Class) is new Controlled with null record;
11 procedure Finalize (X : in out Pinned);
13 end Opt57_Pkg;