Sign in
gnu
/
gcc
/
a6d3012b274f38b20e2a57162106f625746af6c6
/
.
/
gcc
/
testsuite
/
gnat.dg
/
specs
/
restricted_pkg.ads
blob: cfd84699426d51ae3e2ee2d5e469f8ddd0893f04 [
file
] [
log
] [
blame
]
--
{
dg
-
do
compile
}
--
{
dg
-
options
"-gnatc"
}
pragma
Restrictions
(
No_Entry_Queue
);
package
Restricted_Pkg
is
type
Iface
is
limited
interface
;
protected
type PO
is
new
Iface
with
procedure
Dummy
;
end
;
end
;