Update concepts branch to revision 131834
[official-gcc.git] / gcc / testsuite / gnat.dg / specs / restricted_pkg.ads
blobcfd84699426d51ae3e2ee2d5e469f8ddd0893f04
1 -- { dg-do compile }
2 -- { dg-options "-gnatc" }
4 pragma Restrictions (No_Entry_Queue);
5 package Restricted_Pkg is
6 type Iface is limited interface;
7 protected type PO is new Iface with
8 procedure Dummy;
9 end;
10 end;