re PR c++/84691 (internal compiler error: in poplevel_class, at cp/name-lookup.c...
[official-gcc.git] / gcc / testsuite / gnat.dg / sync_iface_call_pkg.ads
blobe392c024c79895a944495b435cd40d3acfeb8551
1 package Sync_Iface_Call_Pkg is
3 type IFace is synchronized interface;
5 procedure Do_Stuff
6 (This : in out IFace;
7 Value : in Integer) is null;
9 procedure Do_Stuff_Access
10 (This : in out IFace;
11 Value : not null access Integer) is null;
13 procedure Do_Stuff_2
14 (This : not null access IFace;
15 Value : in Integer) is null;
17 procedure Do_Stuff_2_Access
18 (This : not null access IFace;
19 Value : not null access Integer) is null;
21 end Sync_Iface_Call_Pkg;