OSDN Git Service

* gcc-interface/decl.c (gnat_to_gnu_entity): Create variables for size
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gnat.dg / specs / storage.ads
1 -- { dg-do compile }
2 with System.Pool_Global;
3 package Storage is
4    x1: System.Pool_Global.Unbounded_No_Reclaim_Pool;
5    type T1 is access integer;
6    for T1'Storage_Pool use (x1);  -- { dg-error "must be a variable" }
7    type T2 is access Integer;
8    for T2'Storage_Pool use x1;
9 end Storage;
10