Sign in
gnu
/
gcc
/
d769c5040874bf9546f2524f3f1d2a894165f92a
/
.
/
gcc
/
testsuite
/
gnat.dg
/
interface4.adb
blob: 8dde602c3899c9d1691871cf49c97cd061ff00c7 [
file
] [
log
] [
blame
]
--
{
dg
-
do
compile
}
procedure interface4
is
generic
type I1
is
interface
;
type I2
is
limited
interface
;
type I3
is
interface
and
I1
;
type I4
is
limited
interface
and
I2
;
package
Pack_I
is
end
Pack_I
;
begin
null
;
end
interface4
;