PR target/84336
[official-gcc.git] / gcc / testsuite / gnat.dg / opt46.ads
blob5a5175d093664f9bc9fb62312b036211c15034ef
1 package Opt46 is
3 type Session_Type is limited private;
5 procedure Close (Session : Session_Type);
7 private
9 type Session_Data;
10 type Session_Data_Access is access Session_Data;
12 type Session_Type is record
13 Data : Session_Data_Access;
14 end record;
16 end Opt46;