2016-11-21 Thomas Preud'homme <thomas.preudhomme@arm.com>
[official-gcc.git] / gcc / testsuite / gnat.dg / specs / sync_iface_test.ads
blob4bccd255d7a2d6c4afa48e00694dc068cbfb64c3
1 -- { dg-do compile }
2 -- { dg-options "-gnatc" }
4 package Sync_Iface_Test is
5 type Iface is limited interface;
6 procedure Do_Test
7 (Container : in out Iface;
8 Process : access procedure (E : Natural)) is abstract;
10 protected type Buffer is new Iface with
11 overriding procedure Do_Test
12 (Process : access procedure (E : Natural));
13 end;
14 end;