PR tree-optimization/81303
[official-gcc.git] / gcc / testsuite / gnat.dg / sync_iface_test.ads
blobc172d7fa2b12d1fc6f270b6455a6512148d36ef2
1 package Sync_Iface_Test is
2 type Iface is limited interface;
3 function First (Obj : Iface) return Natural is abstract;
5 protected type Buffer is new Iface with
6 procedure Dummy;
7 end;
8 overriding function First (Obj : Buffer) return Natural;
10 procedure Do_Test (Dummy : Natural; Item : Buffer);
11 end;